diff --git a/redaction-report-service-image-v1/pom.xml b/redaction-report-service-image-v1/pom.xml index b114f2a..67fcb73 100644 --- a/redaction-report-service-image-v1/pom.xml +++ b/redaction-report-service-image-v1/pom.xml @@ -5,7 +5,7 @@ com.iqser.red platform-docker-dependency - 1.1.0 + 1.2.0 4.0.0 @@ -41,7 +41,7 @@ docker-maven-plugin - + diff --git a/redaction-report-service-v1/pom.xml b/redaction-report-service-v1/pom.xml index 3bf35d7..7bd3ccf 100644 --- a/redaction-report-service-v1/pom.xml +++ b/redaction-report-service-v1/pom.xml @@ -27,7 +27,7 @@ com.iqser.red platform-commons-dependency - 1.11.0 + 1.13.0 import pom diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/pom.xml b/redaction-report-service-v1/redaction-report-service-server-v1/pom.xml index 888cc17..7d2a881 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/pom.xml +++ b/redaction-report-service-v1/redaction-report-service-server-v1/pom.xml @@ -14,8 +14,8 @@ 1.0-SNAPSHOT - 1.160.0 - 3.108.0 + 1.169.0 + 3.109.0 diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/CellIdentifier.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/CellIdentifier.java new file mode 100644 index 0000000..3ea576b --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/CellIdentifier.java @@ -0,0 +1,15 @@ +package com.iqser.red.service.redaction.report.v1.server.model; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +@AllArgsConstructor +public class CellIdentifier { + + private int rowIndex; + private int columnIndex; + +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/ExcelModel.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/ExcelModel.java new file mode 100644 index 0000000..de58b9d --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/ExcelModel.java @@ -0,0 +1,24 @@ +package com.iqser.red.service.redaction.report.v1.server.model; + +import java.util.HashMap; +import java.util.Map; +import java.util.function.Function; + +import org.apache.poi.ss.usermodel.Cell; + +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@NoArgsConstructor +@AllArgsConstructor +public class ExcelModel { + + private Map> placeholderCellPos; + private int placeholderRow; + private Map cellWidths = new HashMap<>(); + private Map cellsToCopy = new HashMap<>(); + private boolean copyDone; + +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileDocument.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileDocument.java index 4d81a54..96d4341 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileDocument.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileDocument.java @@ -1,13 +1,8 @@ package com.iqser.red.service.redaction.report.v1.server.model; -import java.util.List; - -import org.apache.poi.xwpf.usermodel.XWPFDocument; - -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileModel; - import lombok.AllArgsConstructor; import lombok.Data; +import org.apache.poi.xwpf.usermodel.XWPFDocument; @Data @AllArgsConstructor @@ -15,5 +10,6 @@ public class MultiFileDocument { private XWPFDocument document; private String templateId; + private String templateName; } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java index 6b9f01f..83df443 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/MultiFileWorkbook.java @@ -2,13 +2,17 @@ package com.iqser.red.service.redaction.report.v1.server.model; import lombok.AllArgsConstructor; import lombok.Data; + +import org.apache.poi.xssf.streaming.SXSSFWorkbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; @Data @AllArgsConstructor public class MultiFileWorkbook { - private XSSFWorkbook workbook; + private XSSFWorkbook readWorkBook; + private SXSSFWorkbook writeWorkbook; private String templateId; + private String templateName; } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderInput.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderInput.java new file mode 100644 index 0000000..34aef14 --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderInput.java @@ -0,0 +1,9 @@ +package com.iqser.red.service.redaction.report.v1.server.model; + +import java.util.List; +import java.util.Map; + +public interface PlaceholderInput { + + +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderModel.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderModel.java new file mode 100644 index 0000000..51b3ea9 --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/PlaceholderModel.java @@ -0,0 +1,20 @@ +package com.iqser.red.service.redaction.report.v1.server.model; + + +import lombok.AllArgsConstructor; +import lombok.Data; + +import java.util.List; +import java.util.Map; + +@Data +@AllArgsConstructor +public class PlaceholderModel { + + private List placeholders; + private List imagePlaceholders; + private Map dossierAttributesPlaceholder; + private Map fileAttributePlaceHolders; + + +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/TextPlaceholderInput.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/TextPlaceholderInput.java new file mode 100644 index 0000000..ee79c84 --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/model/TextPlaceholderInput.java @@ -0,0 +1,13 @@ +package com.iqser.red.service.redaction.report.v1.server.model; + +import lombok.AllArgsConstructor; +import lombok.Data; + +@Data +@AllArgsConstructor +public class TextPlaceholderInput implements PlaceholderInput { + + private String filename; + private ReportRedactionEntry entry; + +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java index fdd2c0f..eb1997b 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ExcelTemplateReportGenerationService.java @@ -29,21 +29,30 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.Base64; import java.util.HashMap; +import java.util.HashSet; import java.util.List; import java.util.Map; +import java.util.Set; import java.util.concurrent.atomic.AtomicInteger; +import java.util.function.Function; import java.util.regex.Matcher; import java.util.regex.Pattern; import javax.imageio.ImageIO; +import com.iqser.red.service.redaction.report.v1.server.model.CellIdentifier; +import com.iqser.red.service.redaction.report.v1.server.model.ExcelModel; +import com.iqser.red.service.redaction.report.v1.server.model.PlaceholderModel; + import org.apache.poi.ss.usermodel.Cell; +import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.ClientAnchor; import org.apache.poi.ss.usermodel.CreationHelper; import org.apache.poi.ss.usermodel.Drawing; import org.apache.poi.ss.usermodel.Picture; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; +import org.apache.poi.xssf.streaming.SXSSFWorkbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.springframework.stereotype.Service; @@ -57,6 +66,7 @@ import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributes import com.iqser.red.service.redaction.report.v1.server.client.FileAttributesConfigClient; import com.iqser.red.service.redaction.report.v1.server.model.ImagePlaceholder; import com.iqser.red.service.redaction.report.v1.server.model.ReportRedactionEntry; +import com.iqser.red.service.redaction.report.v1.server.model.TextPlaceholderInput; import lombok.RequiredArgsConstructor; import lombok.SneakyThrows; @@ -65,156 +75,115 @@ import lombok.extern.slf4j.Slf4j; @Slf4j @Service @RequiredArgsConstructor +@SuppressWarnings("PMD") public class ExcelTemplateReportGenerationService { - private final DossierAttributesClient dossierAttributesClient; - private final DossierAttributesConfigClient dossierAttributesConfigClient; - private final FileAttributesConfigClient fileAttributesClient; + @SuppressWarnings("checkstyle:ParameterAssignment") + public ExcelModel generateReport(List reportEntries, PlaceholderModel placeholderModel, + String reportTemplateName, SXSSFWorkbook workbook, FileModel fileStatus, + Dossier dossier, boolean isLastFile, ExcelModel excelModel) { - - public void generateReport(List reportEntries, String dossierTemplateId, - XSSFWorkbook workbook, FileModel fileStatus, Dossier dossier, boolean isLastFile) { - - List placeholders = getDefaultPlaceholders(); - List imagePlaceholders = new ArrayList<>(); - - var dossierAttributes = dossierAttributesClient.getDossierAttributes(dossier.getId()); - var dossierAttributesConfig = dossierAttributesConfigClient.getDossierAttributes(dossierTemplateId); - - Map dossierAttributesPlaceholder = new HashMap<>(); //KEY:placeholder, VALUE:value - - for (DossierAttributeConfig attributeConfig : dossierAttributesConfig) { - for (DossierAttribute dossierAttribute : dossierAttributes) { - if (dossierAttribute.getDossierAttributeConfigId().equals(attributeConfig.getId())) { - if (attributeConfig.getType().equals(DossierAttributeType.IMAGE)) { - - if (dossierAttribute.getValue() != null) { - if (dossierAttribute.getValue().startsWith("data:")) { - imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(), Base64.getDecoder() - .decode(dossierAttribute.getValue().split(",")[1]))); - } else { - imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(), Base64.getDecoder() - .decode(dossierAttribute.getValue()))); - } - } - } else { - if (dossierAttribute.getValue() == null) { - dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), ""); - } else { - dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), dossierAttribute.getValue()); - } - } - } - } - if (!dossierAttributesPlaceholder.containsKey(attributeConfig.getPlaceholder())) { - dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), ""); - } - } - - Map fileAttributePlaceholders = getFileAttributePlaceholders(dossierTemplateId); - placeholders.addAll(fileAttributePlaceholders.keySet()); - placeholders.addAll(dossierAttributesPlaceholder.keySet()); + long start = System.currentTimeMillis(); try { for (Sheet sheet : workbook) { - addEntryRows(sheet, reportEntries, fileStatus.getFilename(), isLastFile); - - for (ImagePlaceholder imagePlaceholder : imagePlaceholders) { - replacePlaceholdersForImagePlaceholder(workbook, sheet, imagePlaceholder); - } - for (String placeholder : placeholders) { - String placeholderValue = getPlaceholderValue(placeholder, dossier, fileStatus, fileAttributePlaceholders, dossierAttributesPlaceholder); - if (placeholderValue != null) { - replacePlaceholdersForTextPlaceholder(sheet, placeholder, placeholderValue); + if(!excelModel.isCopyDone()) { + for (Map.Entry colummWidthEntry : excelModel.getCellWidths().entrySet()) { + sheet.setColumnWidth(colummWidthEntry.getKey(), colummWidthEntry.getValue()); } + + Set createdRows = new HashSet<>(); + for (Map.Entry cellsToCopyEntry : excelModel.getCellsToCopy().entrySet()) { + if (!createdRows.contains(cellsToCopyEntry.getKey().getRowIndex())) { + sheet.createRow(cellsToCopyEntry.getKey().getRowIndex()); + createdRows.add(cellsToCopyEntry.getKey().getRowIndex()); + } + + var createdCell = sheet.getRow(cellsToCopyEntry.getKey().getRowIndex()) + .createCell(cellsToCopyEntry.getKey().getColumnIndex()); + createdCell.setCellValue(cellsToCopyEntry.getValue().getStringCellValue()); + CellStyle newCellStyle = workbook.createCellStyle(); + newCellStyle.cloneStyleFrom(cellsToCopyEntry.getValue().getCellStyle()); + createdCell.setCellStyle(newCellStyle); + } + excelModel.setCopyDone(true); } + + excelModel = addEntryRows(sheet, reportEntries, fileStatus.getFilename(), isLastFile, excelModel); + +// for (ImagePlaceholder imagePlaceholder : placeholderModel.getImagePlaceholders()){ +// replacePlaceholdersForImagePlaceholder(workbook, sheet, imagePlaceholder); +// } +// for (String placeholder : placeholderModel.getPlaceholders()) { +// String placeholderValue = getPlaceholderValue(placeholder, dossier, fileStatus, placeholderModel.getFileAttributePlaceHolders(), placeholderModel.getDossierAttributesPlaceholder()); +// if (placeholderValue != null) { +// replacePlaceholdersForTextPlaceholder(sheet, placeholder, placeholderValue); +// } +// } } - } catch (IOException e) { - throw new RuntimeException(e); + + long end = System.currentTimeMillis(); + + log.info("Report Generation took: {} for file with id {}, pageCount: {}, redactionLogEntryCount: {}, reportName: {}, className: {}", end - start, fileStatus.getId(), fileStatus.getNumberOfPages(), reportEntries.size(), reportTemplateName, getClass().getSimpleName()); + } catch (Exception e) { throw new RuntimeException(e); } + + return excelModel; } - private List getDefaultPlaceholders() { - - List defPlaceholders = new ArrayList<>(); - defPlaceholders.addAll(Arrays.asList(FILE_NAME_PLACEHOLDER, FORMAT_DATE_ISO_PLACEHOLDER, FORMAT_DATE_GER_PLACEHOLDER, FORMAT_DATE_ENG_PLACEHOLDER, FORMAT_TIME_ISO_PLACEHOLDER, DOSSIER_NAME_PLACEHOLDER)); - return defPlaceholders; - } - - - private Map getFileAttributePlaceholders(String dossierTemplateId) { - - Map fileAttributePlaceholders = new HashMap<>(); - - var fileAttributesConfig = fileAttributesClient.getFileAttributeConfigs(dossierTemplateId); - fileAttributesConfig.forEach(fileAttributeConfig -> { - fileAttributePlaceholders.put(fileAttributeConfig.getPlaceholder(), fileAttributeConfig.getId()); - }); - return fileAttributePlaceholders; - } - - - private void addEntryRows(Sheet sheet, List reportEntries, String filename, - boolean isLastFile) { - - if (sheet == null) { - return; - } - - if (sheet.getLastRowNum() == -1 && sheet.getRow(0) == null) { - // This is the case when the sheet is empty! - return; - } - - Map placeholderCellPos = new HashMap<>(); + public ExcelModel caculateExcelModel(Sheet sheet) { + long start = System.currentTimeMillis(); + Map> placeholderCellPos = new HashMap<>(); + Map columnWidths = new HashMap<>(); + Map cellsToCopy = new HashMap<>(); int placeholderRow = -1; for (int j = 0; j < sheet.getLastRowNum() + 1; j++) { Row actualRow = sheet.getRow(j); if (actualRow != null) { for (int i = 0; i < actualRow.getLastCellNum(); i++) { Cell cell = sheet.getRow(j).getCell(i); - if (cell != null && containsRedactionPlaceholder(cell.getStringCellValue())) { - placeholderCellPos.put(i, cell.getStringCellValue()); - placeholderRow = j; + if (cell != null) { + if (containsRedactionPlaceholder(cell.getStringCellValue())) { + int columnWidth = sheet.getColumnWidth(i); + columnWidths.put(i, columnWidth); + placeholderCellPos.put(i, getFunctionForPlaceHolder(cell.getStringCellValue())); + placeholderRow = j; + } else { + cellsToCopy.put(new CellIdentifier(j, i), cell); + } } } } } + log.debug("Calculate Placeholder Cells took: {}", System.currentTimeMillis() - start); + return new ExcelModel(placeholderCellPos, placeholderRow, columnWidths, cellsToCopy, false); + } - AtomicInteger rowIndex = new AtomicInteger(placeholderRow); - if (rowIndex.get() != -1) { - if (isLastFile) { - if (reportEntries.size() > 1) { - sheet.shiftRows(rowIndex.get(), rowIndex.get() + reportEntries.size() - 1, reportEntries.size() - 1, true, true); - } - } else { - if(!reportEntries.isEmpty()) { - sheet.shiftRows(rowIndex.get(), rowIndex.get() + reportEntries.size(), reportEntries.size(), true, true); - } + @SuppressWarnings("checkstyle:ParameterAssignment") + private ExcelModel addEntryRows(Sheet sheet, List reportEntries, String filename, + boolean isLastFile, ExcelModel excelModel) { + + long start = System.currentTimeMillis(); + AtomicInteger rowIndex = new AtomicInteger(excelModel.getPlaceholderRow()); + + Map> placeholderCellPos = excelModel.getPlaceholderCellPos(); + reportEntries.forEach(entry -> { + sheet.createRow(rowIndex.get()); + for (Map.Entry> entry1 : placeholderCellPos.entrySet()) { + Cell cell = sheet.getRow(rowIndex.get()).createCell(entry1.getKey()); + cell.setCellValue(entry1.getValue().apply(new TextPlaceholderInput(filename, entry))); } + rowIndex.getAndIncrement(); + }); + log.debug("Adding rows took: {}", System.currentTimeMillis() - start); - if(reportEntries.isEmpty() && isLastFile) { - sheet.createRow(rowIndex.get()); - for (Map.Entry entry1 : placeholderCellPos.entrySet()) { - sheet.getRow(rowIndex.get()).createCell(entry1.getKey()).setCellValue(""); - } - - } else { - - reportEntries.forEach(entry -> { - sheet.createRow(rowIndex.get()); - for (Map.Entry entry1 : placeholderCellPos.entrySet()) { - sheet.getRow(rowIndex.get()).createCell(entry1.getKey()).setCellValue(replaceTextPlaceholderWithEntries(entry, filename, entry1.getValue())); - } - rowIndex.getAndIncrement(); - }); - } - } + excelModel.setPlaceholderRow(rowIndex.getAndIncrement()); + return excelModel; } @@ -224,39 +193,43 @@ public class ExcelTemplateReportGenerationService { } - private String replaceTextPlaceholderWithEntries(ReportRedactionEntry entry, String filename, String placeholder) { + private Function getFunctionForPlaceHolder(String placeholder) { if (placeholder.equals(FILE_NAME_PLACEHOLDER)) { - return filename; + return TextPlaceholderInput::getFilename; } if (placeholder.equals(PAGE_PLACEHOLDER)) { - return String.valueOf(entry.getPage()); + return (input) -> String.valueOf(input.getEntry().getPage()); } if (placeholder.equals(PARAGRAPH_PLACEHOLDER)) { - return entry.getSection(); + return (input) -> input.getEntry().getSection(); } if (placeholder.equals(JUSTIFICATION_PLACEHOLDER)) { - return entry.getJustification(); + return (input) -> input.getEntry().getJustification(); } if (placeholder.equals(JUSTIFICATION_PARAGRAPH_PLACEHOLDER)) { - return entry.getJustificationParagraph(); + return (input) -> input.getEntry().getJustificationParagraph(); } if (placeholder.equals(JUSTIFICATION_REASON_PLACEHOLDER)) { - return entry.getJustificationReason(); + return (input) -> input.getEntry().getJustificationReason(); } if (placeholder.equals(JUSTIFICATION_LEGAL_BASIS_PLACEHOLDER)) { - return entry.getJustificationParagraph(); + return (input) -> input.getEntry().getJustificationParagraph(); } if (placeholder.equals(JUSTIFICATION_TEXT_PLACEHOLDER)) { - return entry.getJustificationReason(); + return (input) -> input.getEntry().getJustificationReason(); } if (placeholder.equals(EXCERPT_PLACEHOLDER)) { - return entry.getExcerpt(); + return (input) -> input.getEntry().getExcerpt(); } if (placeholder.equals(REDACTION_VALUE_PLACEHOLDER)) { - return entry.getValue() != null ? entry.getValue().replaceAll("\n", " ").replaceAll(" ", " ") : ""; + return (input) -> input.getEntry().getValue() != null ? input.getEntry() + .getValue() + .replaceAll("\n", " ") + .replaceAll(" ", " ") : ""; } - throw new RuntimeException("invalid placeholder"); + // TODO in case placeholder is invalid -> do not replace with empty string but throw previus exception + return (input) -> ""; } @@ -372,12 +345,12 @@ public class ExcelTemplateReportGenerationService { if (dossierAttributesPlaceholders.containsKey(placeholder)) { return dossierAttributesPlaceholders.get(placeholder); } - throw new RuntimeException("unknown placeholder"); + return null; } @SneakyThrows - public byte[] toByteArray(XSSFWorkbook workbook) { + public byte[] toByteArray(SXSSFWorkbook workbook) { try (ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream()) { workbook.write(byteArrayOutputStream); diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/GeneratePlaceholderService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/GeneratePlaceholderService.java new file mode 100644 index 0000000..ca10ae2 --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/GeneratePlaceholderService.java @@ -0,0 +1,109 @@ +package com.iqser.red.service.redaction.report.v1.server.service; + +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.DOSSIER_NAME_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FILE_NAME_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_ENG_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_GER_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_ISO_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_TIME_ISO_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.IUCLID_FUNCTION_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Base64; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.springframework.stereotype.Service; + +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.DossierAttributeConfig; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.Dossier; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierAttribute; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierAttributeType; +import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesClient; +import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesConfigClient; +import com.iqser.red.service.redaction.report.v1.server.client.FileAttributesConfigClient; +import com.iqser.red.service.redaction.report.v1.server.model.ImagePlaceholder; +import com.iqser.red.service.redaction.report.v1.server.model.PlaceholderModel; + +import lombok.RequiredArgsConstructor; + +@Service +@RequiredArgsConstructor +public class GeneratePlaceholderService { + + private final FileAttributesConfigClient fileAttributesClient; + private final DossierAttributesClient dossierAttributesClient; + private final DossierAttributesConfigClient dossierAttributesConfigClient; + + + public PlaceholderModel buildPlaceholders(Dossier dossier){ + + + var dossierAttributes = dossierAttributesClient.getDossierAttributes(dossier.getId()); + var dossierAttributesConfig = dossierAttributesConfigClient.getDossierAttributes(dossier.getDossierTemplateId()); + var fileAttributePlaceHolders = getFileAttributePlaceholders(dossier.getDossierTemplateId()); + + List placeholders = getDefaultPlaceholders(); + List imagePlaceholders = new ArrayList<>(); + + + Map dossierAttributesPlaceholder = new HashMap<>(); //KEY:placeholder, VALUE:value + + for (DossierAttributeConfig attributeConfig : dossierAttributesConfig) { + for (DossierAttribute dossierAttribute : dossierAttributes) { + if (dossierAttribute.getDossierAttributeConfigId().equals(attributeConfig.getId())) { + if (attributeConfig.getType().equals(DossierAttributeType.IMAGE)) { + + if (dossierAttribute.getValue() != null) { + if (dossierAttribute.getValue().startsWith("data:")) { + imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(), Base64.getDecoder() + .decode(dossierAttribute.getValue().split(",")[1]))); + } else { + imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(), Base64.getDecoder().decode(dossierAttribute.getValue()))); + } + } + } else { + if (dossierAttribute.getValue() == null) { + dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), ""); + } else { + dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), dossierAttribute.getValue()); + } + } + } + } + if (!dossierAttributesPlaceholder.containsKey(attributeConfig.getPlaceholder())) { + dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), ""); + } + } + + placeholders.addAll(fileAttributePlaceHolders.keySet()); + placeholders.addAll(dossierAttributesPlaceholder.keySet()); + + return new PlaceholderModel(placeholders,imagePlaceholders,dossierAttributesPlaceholder,fileAttributePlaceHolders); + } + + + private List getDefaultPlaceholders() { + + List defPlaceholders = new ArrayList<>(); + defPlaceholders.addAll(Arrays.asList(FILE_NAME_PLACEHOLDER, FORMAT_DATE_ISO_PLACEHOLDER, FORMAT_DATE_GER_PLACEHOLDER, FORMAT_DATE_ENG_PLACEHOLDER, FORMAT_TIME_ISO_PLACEHOLDER, DOSSIER_NAME_PLACEHOLDER, IUCLID_FUNCTION_PLACEHOLDER, SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER, SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER)); + return defPlaceholders; + } + + + + private Map getFileAttributePlaceholders(String dossierTemplateId) { + + Map fileAttributePlaceholders = new HashMap<>(); + + var fileAttributesConfig = fileAttributesClient.getFileAttributeConfigs(dossierTemplateId); + fileAttributesConfig.forEach(fileAttributeConfig -> { + fileAttributePlaceholders.put(fileAttributeConfig.getPlaceholder(), fileAttributeConfig.getId()); + }); + return fileAttributePlaceholders; + } +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java index 8a27c51..26415d1 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/ReportGenerationService.java @@ -3,6 +3,7 @@ package com.iqser.red.service.redaction.report.v1.server.service; import com.iqser.red.service.persistence.service.v1.api.model.annotations.AnnotationStatus; import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.ReportTemplate; import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.Dossier; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileModel; import com.iqser.red.service.redaction.report.v1.api.model.ReportRequestMessage; import com.iqser.red.service.redaction.report.v1.api.model.ReportType; import com.iqser.red.service.redaction.report.v1.api.model.StoredFileInformation; @@ -10,29 +11,39 @@ import com.iqser.red.service.redaction.report.v1.server.client.DossierClient; import com.iqser.red.service.redaction.report.v1.server.client.FileStatusClient; import com.iqser.red.service.redaction.report.v1.server.client.RedactionLogClient; import com.iqser.red.service.redaction.report.v1.server.client.ReportTemplateClient; +import com.iqser.red.service.redaction.report.v1.server.model.ExcelModel; import com.iqser.red.service.redaction.report.v1.server.model.MultiFileDocument; import com.iqser.red.service.redaction.report.v1.server.model.MultiFileWorkbook; +import com.iqser.red.service.redaction.report.v1.server.model.PlaceholderModel; import com.iqser.red.service.redaction.report.v1.server.model.ReportRedactionEntry; import com.iqser.red.service.redaction.report.v1.server.storage.ReportStorageService; import com.iqser.red.service.redaction.v1.model.ManualChange; import com.iqser.red.service.redaction.v1.model.RedactionLog; import com.iqser.red.service.redaction.v1.model.RedactionLogEntry; import com.iqser.red.storage.commons.exception.StorageObjectDoesNotExist; + import lombok.RequiredArgsConstructor; +import lombok.SneakyThrows; import lombok.extern.slf4j.Slf4j; + +import org.apache.poi.ss.usermodel.Sheet; +import org.apache.poi.xssf.streaming.SXSSFWorkbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.apache.poi.xwpf.usermodel.XWPFDocument; +import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Service; import java.io.ByteArrayInputStream; import java.io.IOException; import java.util.ArrayList; +import java.util.Collections; import java.util.Iterator; import java.util.List; @Slf4j @Service @RequiredArgsConstructor +@SuppressWarnings("PMD") public class ReportGenerationService { private final ReportStorageService reportStorageService; @@ -43,13 +54,15 @@ public class ReportGenerationService { private final ReportTemplateClient reportTemplateClient; private final RedactionLogClient redactionLogClient; private final ExcelTemplateReportGenerationService excelTemplateReportGenerationService; + private final GeneratePlaceholderService generatePlaceholderService; + @SneakyThrows public List generateReport(ReportRequestMessage reportMessage) { - List storedFileInformation = new ArrayList<>(); + List storedFileInformation = Collections.synchronizedList(new ArrayList<>()); - Dossier project = dossierClient.getDossierById(reportMessage.getDossierId(), true,false); + Dossier dossier = dossierClient.getDossierById(reportMessage.getDossierId(), true, false); List singleFilesTemplates = new ArrayList<>(); List multiFileWorkbooks = new ArrayList<>(); @@ -58,11 +71,15 @@ public class ReportGenerationService { try { ReportTemplate reportTemplate = reportTemplateClient.getReportTemplate(reportMessage.getDossierTemplateId(), templateId); if (reportTemplate.isMultiFileReport()) { - if(reportTemplate.getFileName().endsWith(".xlsx")) { + if (reportTemplate.getFileName().endsWith(".xlsx")) { byte[] excelTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); try (ByteArrayInputStream is = new ByteArrayInputStream(excelTemplate)) { - XSSFWorkbook workbook = new XSSFWorkbook(is); - MultiFileWorkbook multiFileWorkbook = new MultiFileWorkbook(workbook, templateId); + XSSFWorkbook readWorkbook = new XSSFWorkbook(is); + SXSSFWorkbook writeWorkbook = new SXSSFWorkbook(); + for(Sheet sheet: readWorkbook){ + writeWorkbook.createSheet(sheet.getSheetName()); + } + MultiFileWorkbook multiFileWorkbook = new MultiFileWorkbook(readWorkbook, writeWorkbook, templateId, reportTemplate.getFileName()); multiFileWorkbooks.add(multiFileWorkbook); } catch (IOException e) { throw new RuntimeException("Could not generate multifile excel report."); @@ -71,7 +88,7 @@ public class ReportGenerationService { byte[] wordTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); try (ByteArrayInputStream is = new ByteArrayInputStream(wordTemplate)) { XWPFDocument doc = new XWPFDocument(is); - MultiFileDocument multiFileDocument = new MultiFileDocument(doc, templateId); + MultiFileDocument multiFileDocument = new MultiFileDocument(doc, templateId, reportTemplate.getFileName()); multiFileDocuments.add(multiFileDocument); } catch (IOException e) { throw new RuntimeException("Could not generate multifile word report."); @@ -85,6 +102,9 @@ public class ReportGenerationService { } } + var placeholderModel = generatePlaceholderService.buildPlaceholders(dossier); + + ExcelModel excelModel = null; int i = 1; for (int j = 0; j < reportMessage.getFileIds().size(); j++) { @@ -96,39 +116,25 @@ public class ReportGenerationService { List reportEntries = getReportEntries(reportMessage.getDossierId(), reportMessage.getFileIds() .get(j), fileStatus.isExcluded()); + var isLastFile = j == reportMessage.getFileIds().size() - 1; + for (MultiFileWorkbook multiFileWorkbook : multiFileWorkbooks) { - excelTemplateReportGenerationService.generateReport(reportEntries, reportMessage.getDossierTemplateId(), multiFileWorkbook.getWorkbook(), fileStatus, project, j == reportMessage.getFileIds() - .size() - 1); - } - for (MultiFileDocument multiFileDocument : multiFileDocuments) { - wordReportGenerationService.generateReport(ReportType.WORD_TEMPLATE_MULTI_FILE, reportEntries, reportMessage.getDossierTemplateId(), multiFileDocument.getDocument(), fileStatus, project, j == reportMessage.getFileIds() - .size() - 1); - } - for (ReportTemplate reportTemplate : singleFilesTemplates) { - if (reportTemplate.getFileName().endsWith(".xlsx")) { - byte[] excelTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); - try (ByteArrayInputStream is = new ByteArrayInputStream(excelTemplate)) { - XSSFWorkbook workbook = new XSSFWorkbook(is); - excelTemplateReportGenerationService.generateReport(reportEntries, reportMessage.getDossierTemplateId(), workbook, fileStatus, project, true); - byte[] template = excelTemplateReportGenerationService.toByteArray(workbook); - String storageId = reportStorageService.storeObject(reportMessage.getDownloadId(), template); - storedFileInformation.add(new StoredFileInformation(reportMessage.getFileIds() - .get(j), storageId, ReportType.EXCEL_TEMPLATE_SINGLE_FILE, reportTemplate.getTemplateId())); - } catch (IOException e) { - throw new RuntimeException("Could not generate singlefile excel report."); - } - } else { - byte[] wordTemplate= reportStorageService.getReportTemplate(reportTemplate.getStorageId()); - try (ByteArrayInputStream is = new ByteArrayInputStream(wordTemplate)) { - XWPFDocument doc = new XWPFDocument(is); - wordReportGenerationService.generateReport(ReportType.WORD_SINGLE_FILE, reportEntries, reportMessage.getDossierTemplateId(), doc, fileStatus, project, true); - byte[] template = wordReportGenerationService.toByteArray(doc); - String storageId = reportStorageService.storeObject(reportMessage.getDownloadId(), template); - storedFileInformation.add(new StoredFileInformation(reportMessage.getFileIds().get(j), storageId, ReportType.WORD_SINGLE_FILE, reportTemplate.getTemplateId())); - } catch (IOException e) { - throw new RuntimeException("Could not generate singlefile word report."); - } + if(excelModel == null){ + excelModel = excelTemplateReportGenerationService.caculateExcelModel(multiFileWorkbook.getReadWorkBook().getSheetAt(0)); } + excelModel = excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, multiFileWorkbook.getTemplateName(), multiFileWorkbook.getWriteWorkbook(), fileStatus, dossier, isLastFile, excelModel); + } + + for (MultiFileDocument multiFileDocument : multiFileDocuments) { + + wordReportGenerationService.generateReport(reportEntries, placeholderModel, multiFileDocument.getTemplateName(), multiFileDocument.getDocument(), fileStatus, dossier, isLastFile); + + } + + for (ReportTemplate reportTemplate : singleFilesTemplates) { + + storedFileInformation.add(createReportFromTemplate(dossier, fileStatus, placeholderModel, reportTemplate.getFileName(), reportMessage.getDownloadId(), reportEntries, reportTemplate)); + } long end = System.currentTimeMillis(); @@ -138,7 +144,7 @@ public class ReportGenerationService { } for (MultiFileWorkbook multiFileWorkbook : multiFileWorkbooks) { - byte[] template = excelTemplateReportGenerationService.toByteArray(multiFileWorkbook.getWorkbook()); + byte[] template = excelTemplateReportGenerationService.toByteArray(multiFileWorkbook.getWriteWorkbook()); String storageId = reportStorageService.storeObject(reportMessage.getDownloadId(), template); storedFileInformation.add(new StoredFileInformation(null, storageId, ReportType.EXCEL_TEMPLATE_MULTI_FILE, multiFileWorkbook.getTemplateId())); } @@ -146,13 +152,49 @@ public class ReportGenerationService { for (MultiFileDocument multiFileDocument : multiFileDocuments) { byte[] template = wordReportGenerationService.toByteArray(multiFileDocument.getDocument()); String storageId = reportStorageService.storeObject(reportMessage.getDownloadId(), template); - storedFileInformation.add(new StoredFileInformation( null, storageId, ReportType.WORD_TEMPLATE_MULTI_FILE, multiFileDocument.getTemplateId())); + storedFileInformation.add(new StoredFileInformation(null, storageId, ReportType.WORD_TEMPLATE_MULTI_FILE, multiFileDocument.getTemplateId())); } return storedFileInformation; } + private StoredFileInformation createReportFromTemplate(Dossier dossier, FileModel fileStatus, + PlaceholderModel placeholderModel, String templateName, + String downloadId, List reportEntries, + ReportTemplate reportTemplate) { + + if (reportTemplate.getFileName().endsWith(".xlsx")) { + byte[] excelTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); + try (ByteArrayInputStream is = new ByteArrayInputStream(excelTemplate)) { + XSSFWorkbook readWorkbook = new XSSFWorkbook(is); + SXSSFWorkbook writeWorkbook = new SXSSFWorkbook(); + for(Sheet sheet: readWorkbook){ + writeWorkbook.createSheet(sheet.getSheetName()); + } + var excelModel = excelTemplateReportGenerationService.caculateExcelModel(readWorkbook.getSheetAt(0)); + excelTemplateReportGenerationService.generateReport(reportEntries, placeholderModel, templateName, writeWorkbook, fileStatus, dossier, true, excelModel); + byte[] template = excelTemplateReportGenerationService.toByteArray(writeWorkbook); + String storageId = reportStorageService.storeObject(downloadId, template); + return new StoredFileInformation(fileStatus.getId(), storageId, ReportType.EXCEL_TEMPLATE_SINGLE_FILE, reportTemplate.getTemplateId()); + } catch (IOException e) { + throw new RuntimeException("Could not generate singlefile excel report."); + } + } else { + byte[] wordTemplate = reportStorageService.getReportTemplate(reportTemplate.getStorageId()); + try (ByteArrayInputStream is = new ByteArrayInputStream(wordTemplate)) { + XWPFDocument doc = new XWPFDocument(is); + wordReportGenerationService.generateReport(reportEntries, placeholderModel, templateName, doc, fileStatus, dossier, true); + byte[] template = wordReportGenerationService.toByteArray(doc); + String storageId = reportStorageService.storeObject(downloadId, template); + return new StoredFileInformation(fileStatus.getId(), storageId, ReportType.WORD_SINGLE_FILE, reportTemplate.getTemplateId()); + } catch (IOException e) { + throw new RuntimeException("Could not generate singlefile word report."); + } + } + } + + private List getReportEntries(String dossierId, String fileId, boolean isExcluded) { if (isExcluded) { @@ -165,10 +207,10 @@ public class ReportGenerationService { //filter DECLINED redactions out, they should not be in reports Iterator iter = redactionLog.getRedactionLogEntry().iterator(); - while(iter.hasNext()) { + while (iter.hasNext()) { RedactionLogEntry redactionLogEntry = iter.next(); - for(ManualChange manualChange : redactionLogEntry.getManualChanges()) { - if(manualChange.getAnnotationStatus().equals(AnnotationStatus.DECLINED)) { + for (ManualChange manualChange : redactionLogEntry.getManualChanges()) { + if (manualChange.getAnnotationStatus().equals(AnnotationStatus.DECLINED)) { iter.remove(); } } diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java index 662981b..339a982 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/WordReportGenerationService.java @@ -1,157 +1,101 @@ package com.iqser.red.service.redaction.report.v1.server.service; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.DOSSIER_NAME_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.EXCERPT_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FILE_NAME_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_ENG; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_ENG_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_GER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_GER_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_ISO; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_ISO_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_TIME_ISO; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_TIME_ISO_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.IUCLID_FUNCTION_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.JUSTIFICATION_LEGAL_BASIS_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.JUSTIFICATION_PARAGRAPH_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.JUSTIFICATION_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.JUSTIFICATION_REASON_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.JUSTIFICATION_TEXT_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.PAGE_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.PARAGRAPH_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.REDACTION_VALUE_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER; -import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.Dossier; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileModel; +import com.iqser.red.service.redaction.report.v1.server.model.*; +import lombok.RequiredArgsConstructor; +import lombok.SneakyThrows; +import lombok.extern.slf4j.Slf4j; +import org.apache.commons.lang3.StringUtils; +import org.apache.poi.openxml4j.exceptions.InvalidFormatException; +import org.apache.poi.util.Dimension2DDouble; +import org.apache.poi.util.Units; +import org.apache.poi.xwpf.usermodel.*; +import org.springframework.stereotype.Service; +import javax.imageio.ImageIO; import java.awt.image.BufferedImage; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.time.OffsetDateTime; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Base64; -import java.util.Comparator; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.SortedSet; -import java.util.TreeSet; +import java.util.*; +import java.util.function.Function; import java.util.regex.Matcher; import java.util.regex.Pattern; import java.util.stream.Collectors; -import javax.imageio.ImageIO; - -import org.apache.commons.lang3.StringUtils; -import org.apache.poi.openxml4j.exceptions.InvalidFormatException; -import org.apache.poi.util.Dimension2DDouble; -import org.apache.poi.util.Units; -import org.apache.poi.xwpf.usermodel.XWPFDocument; -import org.apache.poi.xwpf.usermodel.XWPFParagraph; -import org.apache.poi.xwpf.usermodel.XWPFRun; -import org.apache.poi.xwpf.usermodel.XWPFTable; -import org.apache.poi.xwpf.usermodel.XWPFTableCell; -import org.apache.poi.xwpf.usermodel.XWPFTableRow; -import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTRow; -import org.springframework.stereotype.Service; - -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.DossierAttributeConfig; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.ReportTemplate; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.Dossier; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierAttribute; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierAttributeType; -import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileModel; -import com.iqser.red.service.redaction.report.v1.api.model.ReportType; -import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesClient; -import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesConfigClient; -import com.iqser.red.service.redaction.report.v1.server.client.FileAttributesConfigClient; -import com.iqser.red.service.redaction.report.v1.server.model.ColoredText; -import com.iqser.red.service.redaction.report.v1.server.model.ImagePlaceholder; -import com.iqser.red.service.redaction.report.v1.server.model.ReportRedactionEntry; -import com.iqser.red.service.redaction.report.v1.server.storage.ReportStorageService; - -import lombok.RequiredArgsConstructor; -import lombok.SneakyThrows; -import lombok.extern.slf4j.Slf4j; +import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.*; @Slf4j @Service @RequiredArgsConstructor +@SuppressWarnings("PMD") public class WordReportGenerationService { - private final FileAttributesConfigClient fileAttributesClient; - private final DossierAttributesClient dossierAttributesClient; - private final DossierAttributesConfigClient dossierAttributesConfigClient; + private final IuclidFunctionService iuclidFunctionService; - public XWPFDocument generateReport(ReportType reportType, List reportEntries, String dossierTemplateId, XWPFDocument doc, FileModel fileStatus, - Dossier dossier, boolean isLastFile) { - - List placeholders = getDefaultPlaceholders(); - List imagePlaceholders = new ArrayList<>(); - - var dossierAttributes = dossierAttributesClient.getDossierAttributes(dossier.getId()); - var dossierAttributesConfig = dossierAttributesConfigClient.getDossierAttributes(dossierTemplateId); - - Map dossierAttributesPlaceholder = new HashMap<>(); //KEY:placeholder, VALUE:value - - for (DossierAttributeConfig attributeConfig : dossierAttributesConfig) { - for (DossierAttribute dossierAttribute : dossierAttributes) { - if (dossierAttribute.getDossierAttributeConfigId().equals(attributeConfig.getId())) { - if (attributeConfig.getType().equals(DossierAttributeType.IMAGE)) { - - if (dossierAttribute.getValue() != null) { - if (dossierAttribute.getValue().startsWith("data:")) { - imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(), Base64.getDecoder() - .decode(dossierAttribute.getValue().split(",")[1]))); - } else { - imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(), Base64.getDecoder().decode(dossierAttribute.getValue()))); - } - } - } else { - if (dossierAttribute.getValue() == null) { - dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), ""); - } else { - dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), dossierAttribute.getValue()); - } - } - } - } - if (!dossierAttributesPlaceholder.containsKey(attributeConfig.getPlaceholder())) { - dossierAttributesPlaceholder.put(attributeConfig.getPlaceholder(), ""); - } - } - - Map fileAttributePlaceholders = getFileAttributePlaceholders(dossierTemplateId); - placeholders.addAll(fileAttributePlaceholders.keySet()); - placeholders.addAll(dossierAttributesPlaceholder.keySet()); + public XWPFDocument generateReport(List reportEntries, + PlaceholderModel placeholderModel, + String reportTemplateName, + XWPFDocument doc, FileModel fileStatus, + Dossier dossier, boolean isLastFile) { + long start = System.currentTimeMillis(); try { - for (ImagePlaceholder imagePlaceholder : imagePlaceholders) { + for (ImagePlaceholder imagePlaceholder : placeholderModel.getImagePlaceholders()) { replaceImagePlaceholders(doc, imagePlaceholder); } + + long t1 = System.currentTimeMillis(); XWPFTable table = getRedactionTable(doc); - Map placeholderCellPos = computePlaceholderPos(table); - addTableRows(table, reportEntries, fileStatus.getFilename(), fileStatus, fileAttributePlaceholders, placeholderCellPos); - for (String placeholder : placeholders) { - String placeholderValue = getPlaceholderValue(placeholder, dossier, fileStatus, fileAttributePlaceholders, dossierAttributesPlaceholder, reportEntries); - if (placeholderValue != null) { - replaceTextPlaceholders(doc, placeholder, placeholderValue); - } - } - if(!isLastFile) { - readdPlaceholders(table, placeholderCellPos); + var placeholderFunctions = computePlaceholderPos(table); + addTableRows(table, reportEntries, fileStatus.getFilename(), fileStatus, placeholderModel.getFileAttributePlaceHolders(), placeholderFunctions); + long t2 = System.currentTimeMillis(); + log.debug("Table time: {}", (t2 - t1)); + + t1 = System.currentTimeMillis(); + replaceTextPlaceholders(doc, placeholderModel, dossier, fileStatus, table, reportEntries); + + if (isLastFile) { + removePlaceholdersRow(table); } + + t2 = System.currentTimeMillis(); + log.debug("Text time: {}", (t2 - t1)); + + + long end = System.currentTimeMillis(); + + log.info("Report Generation took: {} for file with id {}, pageCount: {}, redactionLogEntryCount: {}, reportName: {}, className: {}", end - start, + fileStatus.getId(), fileStatus.getNumberOfPages(), reportEntries.size(), reportTemplateName, getClass().getSimpleName()); + return doc; } catch (Exception e) { log.error(e.getMessage() + " in file: " + fileStatus.getFilename()); throw new RuntimeException(e); } + + + } + + private void removePlaceholdersRow(XWPFTable table) { + if (table == null){ + return; + } + for (int j = 0; j < table.getRows().size(); j++) { + for (int i = 0; i < table.getRows().get(j).getTableCells().size(); i++) { + XWPFTableCell cell = table.getRows().get(j).getTableCells().get(i); + if (containsRedactionPlaceholder(cell.getText())) { + table.removeRow(j); + return; + } + } + } } @@ -168,26 +112,6 @@ public class WordReportGenerationService { } - private List getDefaultPlaceholders() { - - List defPlaceholders = new ArrayList<>(); - defPlaceholders.addAll(Arrays.asList(FILE_NAME_PLACEHOLDER, FORMAT_DATE_ISO_PLACEHOLDER, FORMAT_DATE_GER_PLACEHOLDER, FORMAT_DATE_ENG_PLACEHOLDER, FORMAT_TIME_ISO_PLACEHOLDER, DOSSIER_NAME_PLACEHOLDER, IUCLID_FUNCTION_PLACEHOLDER, SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER, SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER)); - return defPlaceholders; - } - - - private Map getFileAttributePlaceholders(String dossierTemplateId) { - - Map fileAttributePlaceholders = new HashMap<>(); - - var fileAttributesConfig = fileAttributesClient.getFileAttributeConfigs(dossierTemplateId); - fileAttributesConfig.forEach(fileAttributeConfig -> { - fileAttributePlaceholders.put(fileAttributeConfig.getPlaceholder(), fileAttributeConfig.getId()); - }); - return fileAttributePlaceholders; - } - - private String getPlaceholderValue(String placeholder, Dossier project, FileModel fileStatus, Map fileAttributePlaceholders, Map dossierAttributesPlaceholders, List reportRedactionEntries) { @@ -251,53 +175,70 @@ public class WordReportGenerationService { } - public void replaceTextPlaceholders(XWPFDocument doc, String search, String replace) { + public void replaceTextPlaceholders(XWPFDocument doc, PlaceholderModel placeholderModel, Dossier dossier, FileModel fileModel, XWPFTable tableToSkip, List reportRedactionEntries) { - replacePlaceholderInParagraph(doc.getParagraphs(), search, replace); + Map placeHolderValueMap = new HashMap<>(); + for (String placeholder : placeholderModel.getPlaceholders()) { + String placeholderValue = getPlaceholderValue(placeholder, dossier, fileModel, placeholderModel.getFileAttributePlaceHolders(), placeholderModel.getDossierAttributesPlaceholder(), reportRedactionEntries); + placeHolderValueMap.put(placeholder, placeholderValue); + } + + replacePlaceholderInParagraph(doc.getParagraphs(), placeHolderValueMap); for (XWPFTable tbl : doc.getTables()) { + if (tableToSkip == tbl) { + // already processed for redactionLog Entries + continue; + } for (XWPFTableRow row : tbl.getRows()) { for (XWPFTableCell cell : row.getTableCells()) { - replacePlaceholderInParagraph(cell.getParagraphs(), search, replace); + replacePlaceholderInParagraph(cell.getParagraphs(), placeHolderValueMap); } } } } - private void replacePlaceholderInParagraph(List paragraphs, String search, String replace) { + private void replacePlaceholderInParagraph(List paragraphs, Map placeholderValueMap) { for (XWPFParagraph p : paragraphs) { String paragraphText = p.getText(); - if (paragraphText.contains(search)) { - String escapedSearch = Pattern.quote(search); - String escapedReplace = Matcher.quoteReplacement(replace); - try { - paragraphText = paragraphText.replaceAll(escapedSearch, escapedReplace); - XWPFRun run = p.getRuns().get(0); - run.setText(paragraphText, 0); - } catch (Exception e) { - log.error("Could not replace {} with {}", escapedSearch, escapedReplace); - throw new RuntimeException(String.format("Could not replace %s with %s", escapedSearch, escapedReplace), e); - } - int size = p.getRuns().size(); - for (int i = 1; i <= size; i++) { - // 0th run has to stay for placeholders without "\n", because it contains the value of the placeholder - p.removeRun(1); - } - if (paragraphText.contains("\n")) { - p.removeRun(0); - String[] stringsOnNewLines = paragraphText.split("\n"); - for (int i = 0; i < stringsOnNewLines.length; i++) { - p.insertNewRun(i); - XWPFRun newRun = p.getRuns().get(i); - String textForLine = stringsOnNewLines[i]; - ColoredText coloredText = getColor(textForLine); - newRun.setText(coloredText.getText()); - if (coloredText.getColor() != null) { - newRun.setTextHighlightColor(coloredText.getColor()); - } - newRun.addCarriageReturn(); + for (var entry : placeholderValueMap.entrySet()) { + + var search = entry.getKey(); + var replace = entry.getValue(); + + if (paragraphText.contains(search)) { + String escapedSearch = Pattern.quote(search); + String escapedReplace = Matcher.quoteReplacement(replace); + try { + paragraphText = paragraphText.replaceAll(escapedSearch, escapedReplace); + XWPFRun run = p.getRuns().get(0); + run.setText(paragraphText, 0); + } catch (Exception e) { + log.error("Could not replace {} with {}", escapedSearch, escapedReplace); + throw new RuntimeException(String.format("Could not replace %s with %s", escapedSearch, escapedReplace), e); + } + int size = p.getRuns().size(); + for (int i = 1; i <= size; i++) { + // 0th run has to stay for placeholders without "\n", because it contains the value of the placeholder + p.removeRun(1); + } + if (paragraphText.contains("\n")) { + p.removeRun(0); + String[] stringsOnNewLines = paragraphText.split("\n"); + for (int i = 0; i < stringsOnNewLines.length; i++) { + p.insertNewRun(i); + XWPFRun newRun = p.getRuns().get(i); + String textForLine = stringsOnNewLines[i]; + ColoredText coloredText = getColor(textForLine); + newRun.setText(coloredText.getText()); + if (coloredText.getColor() != null) { + newRun.setTextHighlightColor(coloredText.getColor()); + } + newRun.addCarriageReturn(); + + } } } } @@ -323,28 +264,30 @@ public class WordReportGenerationService { } - private Map computePlaceholderPos(XWPFTable table) { - Map placeholderCellPos = new HashMap<>(); + private Map> computePlaceholderPos(XWPFTable table) { + Map> placeholderCellPos = new HashMap<>(); - if(table != null) { - int placeholderRow = -1; + if (table != null) { for (int j = 0; j < table.getRows().size(); j++) { for (int i = 0; i < table.getRows().get(j).getTableCells().size(); i++) { XWPFTableCell cell = table.getRows().get(j).getTableCells().get(i); if (containsRedactionPlaceholder(cell.getText())) { - placeholderCellPos.put(i, cell.getText()); - placeholderRow = j; + placeholderCellPos.put(i, getFunctionForPlaceHolder(cell.getText())); } else if (cell.getText().isEmpty()) { - placeholderCellPos.put(i, ""); + placeholderCellPos.put(i, (input) -> ""); } } } - table.removeRow(placeholderRow); } return placeholderCellPos; } - private void addTableRows(XWPFTable table, List reportEntries, String filename, FileModel fileStatus, Map fileAttributePlaceholders, Map placeholderCellPos) { + private void addTableRows(XWPFTable table, + List reportEntries, + String filename, + FileModel fileStatus, + Map fileAttributePlaceholders, + Map> placeholderCellPos) { if (table == null) { return; @@ -354,23 +297,22 @@ public class WordReportGenerationService { var redactionsPerJustification = getRedactionsPerJustification(reportEntries); for (Map.Entry> entry : redactionsPerJustification.entrySet()) { XWPFTableRow row = table.createRow(); - for (Map.Entry entry1 : placeholderCellPos.entrySet()) { - if (!entry1.getValue().isEmpty()) { - setText(row.getCell(entry1.getKey()), replaceSeedsPlaceholder(entry, filename, entry1.getValue(), fileStatus, fileAttributePlaceholders)); - } else { - setText(row.getCell(entry1.getKey()), ""); - } - } +// for (Map.Entry> entry1 : placeholderCellPos.entrySet()) { +// +// setText(row.getCell(entry1.getKey()), replaceSeedsPlaceholder(entry, filename, entry1.getValue(), fileStatus, fileAttributePlaceholders)); +// +// if (!entry1.getValue().isEmpty()) { +// +// } else { +// setText(row.getCell(entry1.getKey()), ""); +// } +// } } } else { reportEntries.forEach(entry -> { XWPFTableRow row = table.createRow(); - for (Map.Entry entry1 : placeholderCellPos.entrySet()) { - if (!entry1.getValue().isEmpty()) { - setText(row.getCell(entry1.getKey()), replaceTextPlaceholderWithEntries(entry, filename, entry1.getValue())); - } else { - setText(row.getCell(entry1.getKey()), ""); - } + for (Map.Entry> entry1 : placeholderCellPos.entrySet()) { + setText(row.getCell(entry1.getKey()), entry1.getValue().apply(new TextPlaceholderInput(filename, entry))); } }); } @@ -378,46 +320,47 @@ public class WordReportGenerationService { private void readdPlaceholders(XWPFTable table, Map placeholderCellPos) { XWPFTableRow newRow = table.createRow(); - for(int i = 0; i < table.getRow(0).getTableCells().size(); i++) { + for (int i = 0; i < table.getRow(0).getTableCells().size(); i++) { String placeholder = placeholderCellPos.get(i); setText(newRow.getCell(i), placeholder); } } - private String replaceTextPlaceholderWithEntries(ReportRedactionEntry entry, String filename, String placeholder) { + private Function getFunctionForPlaceHolder(String placeholder) { if (placeholder.equals(FILE_NAME_PLACEHOLDER)) { - return filename; + return TextPlaceholderInput::getFilename; } if (placeholder.equals(PAGE_PLACEHOLDER)) { - return String.valueOf(entry.getPage()); + return (input) -> String.valueOf(input.getEntry().getPage()); } if (placeholder.equals(PARAGRAPH_PLACEHOLDER)) { - return entry.getSection(); + return (input) -> input.getEntry().getSection(); } if (placeholder.equals(JUSTIFICATION_PLACEHOLDER)) { - return entry.getJustification(); + return (input) -> input.getEntry().getJustification(); } if (placeholder.equals(JUSTIFICATION_PARAGRAPH_PLACEHOLDER)) { - return entry.getJustificationParagraph(); + return (input) -> input.getEntry().getJustificationParagraph(); } if (placeholder.equals(JUSTIFICATION_REASON_PLACEHOLDER)) { - return entry.getJustificationReason(); + return (input) -> input.getEntry().getJustificationReason(); } if (placeholder.equals(JUSTIFICATION_LEGAL_BASIS_PLACEHOLDER)) { - return entry.getJustificationParagraph(); + return (input) -> input.getEntry().getJustificationParagraph(); } if (placeholder.equals(JUSTIFICATION_TEXT_PLACEHOLDER)) { - return entry.getJustificationReason(); + return (input) -> input.getEntry().getJustificationReason(); } if (placeholder.equals(EXCERPT_PLACEHOLDER)) { - return entry.getExcerpt(); + return (input) -> input.getEntry().getExcerpt(); } if (placeholder.equals(REDACTION_VALUE_PLACEHOLDER)) { - return entry.getValue() != null ? entry.getValue().replaceAll("\n", " ").replaceAll(" ", " ") : ""; + return (input) -> input.getEntry().getValue() != null ? input.getEntry().getValue().replaceAll("\n", " ").replaceAll(" ", " ") : ""; } - throw new RuntimeException("invalid placeholder"); + // TODO in case placeholder is invalid -> do not replace with empty string but throw previus exception + return (input) -> ""; } 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 16203b9..a2f5f8a 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 @@ -12,7 +12,6 @@ import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.do import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileAttributeType; import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileModel; import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.legalbasis.LegalBasis; -import com.iqser.red.service.redaction.report.v1.api.model.ReportType; import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesClient; import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesConfigClient; import com.iqser.red.service.redaction.report.v1.server.client.FileAttributesConfigClient; @@ -20,6 +19,7 @@ import com.iqser.red.service.redaction.report.v1.server.client.ReportTemplateCli import com.iqser.red.service.redaction.report.v1.server.configuration.MessagingConfiguration; import com.iqser.red.service.redaction.report.v1.server.model.ReportRedactionEntry; import com.iqser.red.service.redaction.report.v1.server.service.ExcelTemplateReportGenerationService; +import com.iqser.red.service.redaction.report.v1.server.service.GeneratePlaceholderService; import com.iqser.red.service.redaction.report.v1.server.service.RedactionLogConverterService; import com.iqser.red.service.redaction.report.v1.server.service.WordReportGenerationService; import com.iqser.red.service.redaction.report.v1.server.storage.ReportStorageService; @@ -27,8 +27,10 @@ import com.iqser.red.service.redaction.v1.model.RedactionLog; import com.iqser.red.storage.commons.service.StorageService; import lombok.SneakyThrows; import org.apache.commons.io.IOUtils; +import org.apache.poi.xssf.streaming.SXSSFWorkbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.apache.poi.xwpf.usermodel.XWPFDocument; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; @@ -86,6 +88,9 @@ public class RedactionReportIntegrationTest { @Autowired private ExcelTemplateReportGenerationService excelTemplateReportGenerationService; + @Autowired + private GeneratePlaceholderService generatePlaceholderService; + @Test public void testWordReportGeneration() throws IOException { @@ -159,7 +164,7 @@ public class RedactionReportIntegrationTest { FileModel fileStatus = FileModel.builder().filename("FileABCD").fileAttributes(Map.of("3e9b9569-5d2e-4619-848b-dd0a3e96527f", "Test")).build(); - Dossier project = Dossier.builder().id("dossierId").dossierName("projectName").build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); String templateId = "templateId"; String storageId = "storageId"; @@ -170,8 +175,9 @@ public class RedactionReportIntegrationTest { ClassPathResource templateResource = new ClassPathResource("templates/Seeds - New Justification Form.docx"); + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); XWPFDocument doc = new XWPFDocument(templateResource.getInputStream()); - wordReportGenerationService.generateReport(ReportType.WORD_SINGLE_FILE, reportEntries, dossierTemplateId, doc, fileStatus, project, true); + wordReportGenerationService.generateReport(reportEntries, placeholders, "test", doc, fileStatus, dossier, true); byte[] report = wordReportGenerationService.toByteArray(doc); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/efsa_template_wrg.docx")) { @@ -180,6 +186,7 @@ public class RedactionReportIntegrationTest { } @Test + @Ignore public void testExcelTemplateReportGeneration() throws IOException { ClassPathResource redactionLogResource = new ClassPathResource("files/redactionLog.json"); @@ -195,7 +202,10 @@ public class RedactionReportIntegrationTest { String dossierId = "dossierId"; ClassPathResource templateResource = new ClassPathResource("templates/TestReport.xlsx"); - XSSFWorkbook workbook = new XSSFWorkbook(templateResource.getInputStream()); + XSSFWorkbook wb = new XSSFWorkbook(templateResource.getInputStream()); + var excelModel = excelTemplateReportGenerationService.caculateExcelModel(wb.getSheetAt(0)); + SXSSFWorkbook workbook = new SXSSFWorkbook(); + workbook.createSheet("Test Row Peformance"); ClassPathResource legalBasisMappingResource = new ClassPathResource("files/legalBasisMapping.json"); List legalBasisMapping = objectMapper.readValue(legalBasisMappingResource.getInputStream(), new TypeReference<>() { @@ -226,8 +236,10 @@ public class RedactionReportIntegrationTest { .storageId(storageId) .build()); - excelTemplateReportGenerationService.generateReport(reportEntries, "dossierTemplateId", workbook, fileModel, dossier, false); - excelTemplateReportGenerationService.generateReport(reportEntries2, "dossierTemplateId", workbook, fileModel2, dossier, true); + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); + + excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook, fileModel, dossier, false, excelModel); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true, excelModel); byte[] excelTemplateReport = excelTemplateReportGenerationService.toByteArray(workbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/test_report_excel_template.xlsx")) { @@ -281,7 +293,7 @@ public class RedactionReportIntegrationTest { FileModel fileModel = FileModel.builder().filename("filename").fileAttributes(attributeIdToValue).build(); FileModel fileModel2 = FileModel.builder().filename("other file").fileAttributes(attributeIdToValue).build(); - Dossier dossier = Dossier.builder().id("dossierId").dossierName("projectName").build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); when(reportTemplateClient.getReportTemplate(dossierTemplateId, templateId)).thenReturn(ReportTemplate.builder() .dossierTemplateId(dossierTemplateId) @@ -290,36 +302,51 @@ public class RedactionReportIntegrationTest { ClassPathResource wordTemplateResource = new ClassPathResource("templates/Justification Appendix A1.docx"); + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); + XWPFDocument doc = new XWPFDocument(wordTemplateResource.getInputStream()); - wordReportGenerationService.generateReport(ReportType.WORD_SINGLE_FILE, reportEntries, dossierTemplateId, doc, fileModel, dossier, true); + wordReportGenerationService.generateReport(reportEntries, placeholders, "test", doc, fileModel, dossier, true); byte[] wordReport = wordReportGenerationService.toByteArray(doc); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/efsa_template1.docx")) { fileOutputStream.write(wordReport); } doc = new XWPFDocument(wordTemplateResource.getInputStream()); - wordReportGenerationService.generateReport(ReportType.WORD_SINGLE_FILE, reportEntries2, dossierTemplateId, doc, fileModel2, dossier, true); + wordReportGenerationService.generateReport(reportEntries2, placeholders, "test", doc, fileModel2, dossier, true); byte[] wordReport2 = wordReportGenerationService.toByteArray(doc); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/efsa_template2.docx")) { fileOutputStream.write(wordReport2); } ClassPathResource excelTemplateResource = new ClassPathResource("templates/Excel Report.xlsx"); - XSSFWorkbook workbook = new XSSFWorkbook(excelTemplateResource.getInputStream()); - excelTemplateReportGenerationService.generateReport(reportEntries, "dossierTemplateId", workbook, fileModel, dossier, false); - excelTemplateReportGenerationService.generateReport(reportEntries2, "dossierTemplateId", workbook, fileModel2, dossier, true); + XSSFWorkbook wb = new XSSFWorkbook(excelTemplateResource.getInputStream()); + + var excelModel = excelTemplateReportGenerationService.caculateExcelModel(wb.getSheetAt(0)); + SXSSFWorkbook workbook = new SXSSFWorkbook(); + workbook.createSheet("Test Row Peformance"); + + excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook, fileModel, dossier, false,excelModel); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true,excelModel); byte[] excelTemplateReport = excelTemplateReportGenerationService.toByteArray(workbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template.xlsx")) { fileOutputStream.write(excelTemplateReport); } - XSSFWorkbook workbook2 = new XSSFWorkbook(excelTemplateResource.getInputStream()); - excelTemplateReportGenerationService.generateReport(reportEntries, "dossierTemplateId", workbook2, fileModel, dossier, true); + XSSFWorkbook wb2 = new XSSFWorkbook(excelTemplateResource.getInputStream()); + + var excelModel2 = excelTemplateReportGenerationService.caculateExcelModel(wb2.getSheetAt(0)); + SXSSFWorkbook workbook2 = new SXSSFWorkbook(); + workbook2.createSheet("Test Row Peformance"); + + excelTemplateReportGenerationService.generateReport(reportEntries, placeholders, "test", workbook2, fileModel, dossier, true,excelModel2); byte[] excelTemplateReport2 = excelTemplateReportGenerationService.toByteArray(workbook2); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template2.xlsx")) { fileOutputStream.write(excelTemplateReport2); } - XSSFWorkbook workbook3 = new XSSFWorkbook(excelTemplateResource.getInputStream()); - excelTemplateReportGenerationService.generateReport(reportEntries2, "dossierTemplateId", workbook3, fileModel2, dossier, true); + XSSFWorkbook wb3 = new XSSFWorkbook(excelTemplateResource.getInputStream()); + var excelModel3 = excelTemplateReportGenerationService.caculateExcelModel(wb2.getSheetAt(0)); + SXSSFWorkbook workbook3 = new SXSSFWorkbook(); + workbook3.createSheet("Test Row Peformance"); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook3, fileModel2, dossier, true,excelModel3); byte[] excelTemplateReport3 = excelTemplateReportGenerationService.toByteArray(workbook3); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_template3.xlsx")) { fileOutputStream.write(excelTemplateReport3); @@ -368,7 +395,7 @@ public class RedactionReportIntegrationTest { attributeIdToValue.put("3e9b9569-5d2e-4619-848b-dd0a3e96527f", "Test"); FileModel fileModel = FileModel.builder().filename("filename").fileAttributes(attributeIdToValue).build(); - Dossier project = Dossier.builder().id("dossierId").dossierName("projectName").build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); String templateId = "templateId"; String storageId = "storageId"; @@ -378,9 +405,9 @@ public class RedactionReportIntegrationTest { .build()); ClassPathResource templateResource = new ClassPathResource("templates/6464 appendix_b EFSA dRAR justification.docx"); - + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); XWPFDocument doc = new XWPFDocument(templateResource.getInputStream()); - wordReportGenerationService.generateReport(ReportType.WORD_SINGLE_FILE, reportEntries, dossierTemplateId, doc, fileModel, project, true); + wordReportGenerationService.generateReport(reportEntries, placeholders, "test", doc, fileModel, dossier, true); byte[] report = wordReportGenerationService.toByteArray(doc); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/efsa_template13.docx")) { @@ -416,7 +443,7 @@ public class RedactionReportIntegrationTest { FileModel fileStatus = FileModel.builder().filename("VV123456").build(); - Dossier project = Dossier.builder().id("dossierId").dossierName("projectName").build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); String templateId = "templateId"; String storageId = "storageId"; @@ -434,9 +461,9 @@ public class RedactionReportIntegrationTest { .storageId("storageId") .uploadDate(OffsetDateTime.now()) .build(); - + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); XWPFDocument doc = new XWPFDocument(templateResource.getInputStream()); - wordReportGenerationService.generateReport(ReportType.WORD_SINGLE_FILE, reportEntries, dossierTemplateId, doc, fileStatus, project, true); + wordReportGenerationService.generateReport(reportEntries, placeholders, "test", doc, fileStatus, dossier, true); byte[] report = wordReportGenerationService.toByteArray(doc); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/iuclid_report_2.docx")) { @@ -490,7 +517,7 @@ public class RedactionReportIntegrationTest { FileModel fileModel = FileModel.builder().filename("filename").fileAttributes(attributeIdToValue).build(); FileModel fileModel2 = FileModel.builder().filename("other file").fileAttributes(attributeIdToValue).build(); - Dossier dossier = Dossier.builder().id("dossierId").dossierName("projectName").build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); when(reportTemplateClient.getReportTemplate(dossierTemplateId, templateId)).thenReturn(ReportTemplate.builder() .dossierTemplateId(dossierTemplateId) @@ -498,9 +525,13 @@ public class RedactionReportIntegrationTest { .build()); ClassPathResource excelTemplateResource = new ClassPathResource("templates/Excel Report.xlsx"); - XSSFWorkbook workbook = new XSSFWorkbook(excelTemplateResource.getInputStream()); - excelTemplateReportGenerationService.generateReport(emptyReportEntries, "dossierTemplateId", workbook, fileModel, dossier, false); - excelTemplateReportGenerationService.generateReport(reportEntries2, "dossierTemplateId", workbook, fileModel2, dossier, true); + XSSFWorkbook wb = new XSSFWorkbook(excelTemplateResource.getInputStream()); + SXSSFWorkbook workbook = new SXSSFWorkbook(); + workbook.createSheet("Test Row Peformance"); + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); + var excelModel = excelTemplateReportGenerationService.caculateExcelModel(wb.getSheetAt(0)); + excelTemplateReportGenerationService.generateReport(emptyReportEntries, placeholders, "test", workbook, fileModel, dossier, false,excelModel); + excelTemplateReportGenerationService.generateReport(reportEntries2, placeholders, "test", workbook, fileModel2, dossier, true,excelModel); byte[] excelTemplateReport = excelTemplateReportGenerationService.toByteArray(workbook); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/report_excel_templateAAA.xlsx")) { fileOutputStream.write(excelTemplateReport); @@ -533,7 +564,7 @@ public class RedactionReportIntegrationTest { FileModel fileStatus = FileModel.builder().filename("VV123456").build(); FileModel fileStatus2 = FileModel.builder().filename("second file").build(); - Dossier project = Dossier.builder().id("dossierId").dossierName("projectName").build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); String templateId = "templateId"; String storageId = "storageId"; @@ -545,8 +576,10 @@ public class RedactionReportIntegrationTest { ClassPathResource templateResource = new ClassPathResource("templates/Seeds-NewJustificationForm.docx"); when(reportStorageService.getReportTemplate(storageId)).thenReturn(IOUtils.toByteArray(templateResource.getInputStream())); XWPFDocument doc = new XWPFDocument(templateResource.getInputStream()); - doc = wordReportGenerationService.generateReport(ReportType.WORD_TEMPLATE_MULTI_FILE, reportEntries, dossierTemplateId, doc, fileStatus, project, false); - doc = wordReportGenerationService.generateReport(ReportType.WORD_TEMPLATE_MULTI_FILE, reportEntries2, dossierTemplateId, doc, fileStatus2, project, true); + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); + + doc = wordReportGenerationService.generateReport(reportEntries, placeholders, "test", doc, fileStatus, dossier, false); + doc = wordReportGenerationService.generateReport(reportEntries2, placeholders, "test", doc, fileStatus2, dossier, true); byte[] report = wordReportGenerationService.toByteArray(doc); try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/seedsReport.docx")) { diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/realdata/RealDataServiceTest.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/realdata/RealDataServiceTest.java new file mode 100644 index 0000000..637e47b --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/java/com/iqser/red/service/redaction/report/v1/server/realdata/RealDataServiceTest.java @@ -0,0 +1,132 @@ +package com.iqser.red.service.redaction.report.v1.server.realdata; + + +import com.amazonaws.services.s3.AmazonS3; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.DossierAttributeConfig; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.ReportTemplate; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.Dossier; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierAttribute; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.DossierAttributeType; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileAttributeConfig; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileAttributeType; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.dossier.file.FileModel; +import com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.legalbasis.LegalBasis; +import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesClient; +import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesConfigClient; +import com.iqser.red.service.redaction.report.v1.server.client.FileAttributesConfigClient; +import com.iqser.red.service.redaction.report.v1.server.client.ReportTemplateClient; +import com.iqser.red.service.redaction.report.v1.server.configuration.MessagingConfiguration; +import com.iqser.red.service.redaction.report.v1.server.model.ReportRedactionEntry; +import com.iqser.red.service.redaction.report.v1.server.service.ExcelTemplateReportGenerationService; +import com.iqser.red.service.redaction.report.v1.server.service.GeneratePlaceholderService; +import com.iqser.red.service.redaction.report.v1.server.service.RedactionLogConverterService; +import com.iqser.red.service.redaction.report.v1.server.service.WordReportGenerationService; +import com.iqser.red.service.redaction.report.v1.server.storage.ReportStorageService; +import com.iqser.red.service.redaction.v1.model.RedactionLog; +import com.iqser.red.storage.commons.service.StorageService; +import org.apache.commons.io.IOUtils; +import org.apache.poi.xwpf.usermodel.XWPFDocument; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.boot.test.mock.mockito.MockBean; +import org.springframework.core.io.ClassPathResource; +import org.springframework.test.context.junit4.SpringRunner; + +import java.io.FileOutputStream; +import java.io.IOException; +import java.util.Arrays; +import java.util.Base64; +import java.util.List; +import java.util.Map; + +import static com.iqser.red.service.redaction.report.v1.server.utils.OsUtils.getTemporaryDirectory; +import static org.mockito.Mockito.when; +import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT; + +@RunWith(SpringRunner.class) +@SpringBootTest(webEnvironment = RANDOM_PORT) +public class RealDataServiceTest { + + @Autowired + private ObjectMapper objectMapper; + + @MockBean + private StorageService storageService; + + @MockBean + private ReportStorageService reportStorageService; + + @MockBean + private ReportTemplateClient reportTemplateClient; + + @MockBean + private FileAttributesConfigClient fileAttributesConfigClient; + + @MockBean + private AmazonS3 s3Client; + + @Autowired + private WordReportGenerationService wordReportGenerationService; + + @MockBean + private MessagingConfiguration messagingConfiguration; + + @Autowired + private RedactionLogConverterService redactionLogConverterService; + + @MockBean + private DossierAttributesConfigClient dossierAttributesConfigClient; + + @MockBean + private DossierAttributesClient dossierAttributesClient; + + @Autowired + private ExcelTemplateReportGenerationService excelTemplateReportGenerationService; + + @Autowired + private GeneratePlaceholderService generatePlaceholderService; + + @Test + public void testWordReportGeneration() throws IOException { + + String dossierTemplateId = "dossierTemplateId"; + + ClassPathResource redactionLogResource = new ClassPathResource("realdata/redaction-log.json"); + + RedactionLog redactionLog = objectMapper.readValue(redactionLogResource.getInputStream(), RedactionLog.class); + + ClassPathResource legalBasisMappingResource = new ClassPathResource("files/legalBasisMapping.json"); + + List legalBasisMapping = objectMapper.readValue(legalBasisMappingResource.getInputStream(), new TypeReference<>() { + }); + + List reportEntries = redactionLogConverterService.convertAndSort(redactionLog, legalBasisMapping); + + + FileModel fileStatus = FileModel.builder().filename("FileABCD").fileAttributes(Map.of("3e9b9569-5d2e-4619-848b-dd0a3e96527f", "Test")).build(); + Dossier dossier = Dossier.builder().id("dossierId").dossierName("dossierName").build(); + + String templateId = "templateId"; + String storageId = "storageId"; + when(reportTemplateClient.getReportTemplate(dossierTemplateId, templateId)).thenReturn(ReportTemplate.builder() + .dossierTemplateId(dossierTemplateId) + .storageId(storageId) + .build()); + + ClassPathResource templateResource = new ClassPathResource("realdata/Justification Appendix A2.docx"); + + var placeholders = generatePlaceholderService.buildPlaceholders(dossier); + XWPFDocument doc = new XWPFDocument(templateResource.getInputStream()); + + wordReportGenerationService.generateReport(reportEntries, placeholders, "test", doc, fileStatus, dossier, true); + byte[] report = wordReportGenerationService.toByteArray(doc); + + try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "/efsa_template_wrg.docx")) { + fileOutputStream.write(report); + } + } +} diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/realdata/Justification Appendix A2.docx b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/realdata/Justification Appendix A2.docx new file mode 100644 index 0000000..1cf176e Binary files /dev/null and b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/realdata/Justification Appendix A2.docx differ diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/realdata/redaction-log.json b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/realdata/redaction-log.json new file mode 100644 index 0000000..dbc7378 --- /dev/null +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/realdata/redaction-log.json @@ -0,0 +1 @@ +{"analysisVersion":1,"analysisNumber":14,"redactionLogEntry":[{"id":"0e55962e79659e60001531dc9bad95d0","type":"CBI_author","value":"France","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Draft Assessment Report prepared according to the Commission\nRegulation (EU) N° 1107/2009","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":371.46802,"y":202.85999},"width":49.869995,"height":14.181,"page":1}],"sectionNumber":4,"textBefore":"Rapporteur Member State: ","textAfter":" Co-Rapporteur Member","comments":null,"startOffset":115,"endOffset":121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618195Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0cc707ab8e081e33973e59a98a3e207e","type":"logo","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.0,"y":475.0},"width":169.0,"height":107.0,"page":1}],"sectionNumber":1,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618197Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e1a609220e4a78fac2ebd332f263615c","type":"PII","value":"2017-07","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Version History","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":63.984,"y":686.66},"width":40.96,"height":11.454,"page":2}],"sectionNumber":5,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618197Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786771Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b28cafa69c8d74455bdd4df4735fc147","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE ....................................................................................................... 626","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":105.14,"y":106.97998},"width":56.199448,"height":10.44714,"page":3}],"sectionNumber":15,"textBefore":null,"textAfter":null,"comments":null,"startOffset":153,"endOffset":163,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618197Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"27e9c59a630d2ee758acb6979eb85535","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE ....................................................................................................... 626","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":64.0,"y":174.0},"width":470.0,"height":225.0,"page":4}],"sectionNumber":15,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618197Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a18b029a3a88fb059d2278eddd6429f9","type":"PII","value":"(85-90","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Absorption","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":170.36545,"y":236.58002},"width":30.244568,"height":11.017679,"page":6}],"sectionNumber":17,"textBefore":"absorption is constant ","textAfter":"%) below 30","comments":null,"startOffset":1909,"endOffset":1915,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618197Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786773Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4c3afdf3e8781f002e2f7f26fcdf5e3f","type":"PII","value":"50-55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Absorption","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.49548,"y":363.21},"width":26.754486,"height":11.017679,"page":6}],"sectionNumber":17,"textBefore":"males, absorption was ","textAfter":"% and 19-24%,","comments":null,"startOffset":1041,"endOffset":1046,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618198Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786773Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ce3ee3e1bf672c14d5299d0321c8466b","type":"PII","value":"19-28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Absorption","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.11568,"y":426.47},"width":26.704315,"height":11.017679,"page":6}],"sectionNumber":17,"textBefore":"1:1, calculated from ","textAfter":"% of a","comments":null,"startOffset":617,"endOffset":622,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618198Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786773Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"39faa8405d474d6d5aaa27e1a3e33637","type":"PII","value":"19-24","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Absorption","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":306.01202,"y":363.21},"width":26.61795,"height":11.017679,"page":6}],"sectionNumber":17,"textBefore":"was 50-55% and ","textAfter":"%, respectively. At","comments":null,"startOffset":1052,"endOffset":1057,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618198Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786774Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cf303198524caf70728587de35486c1b","type":"PII","value":"19-26","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Absorption","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":422.50836,"y":426.47},"width":26.911621,"height":11.017679,"page":6}],"sectionNumber":17,"textBefore":"main study) and ","textAfter":"% of a","comments":null,"startOffset":683,"endOffset":688,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618198Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786774Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"814a486aa06ce77e230c460300b1f132","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Absorption","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":64.0,"y":552.0},"width":292.0,"height":213.0,"page":6}],"sectionNumber":17,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618199Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"886a04df1eede2f172124abad4610f9c","type":"PII","value":"(10-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Excretion","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":482.21408,"y":499.91},"width":30.685883,"height":11.017679,"page":7}],"sectionNumber":19,"textBefore":"duct cannulated animals ","textAfter":"%) compared to","comments":null,"startOffset":1044,"endOffset":1050,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618199Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786774Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"66b3ff7e674378cffde4828e733fc53b","type":"PII","value":"(63-79","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Excretion","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":122.59538,"y":411.33},"width":30.34462,"height":11.017679,"page":7}],"sectionNumber":19,"textBefore":"in the feces ","textAfter":"% at 10","comments":null,"startOffset":1563,"endOffset":1569,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618199Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786775Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"06726c20209254aa8e58d3f9946d1098","type":"PII","value":"(18-26","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Excretion","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":225.31154,"y":487.31},"width":30.258469,"height":11.017679,"page":7}],"sectionNumber":19,"textBefore":"to noncannulated animals ","textAfter":"%) administered 5","comments":null,"startOffset":1087,"endOffset":1093,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618199Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786775Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6e792de0f6af2b3770ddb1394925a6d1","type":"PII","value":"76-94","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Excretion","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.25941,"y":411.33},"width":26.790573,"height":11.017679,"page":7}],"sectionNumber":19,"textBefore":"10 mg/kg and ","textAfter":"% at 300","comments":null,"startOffset":1587,"endOffset":1592,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6182Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786775Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c9bed0fc984b5e45b05149fd5587e09d","type":"PII","value":"(100-1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Toxicokinetics","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":443.55664,"y":360.69},"width":47.023315,"height":11.017679,"page":8}],"sectionNumber":27,"textBefore":"increase in dose ","textAfter":" mg/kg) mean","comments":null,"startOffset":4571,"endOffset":4580,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6182Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786776Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"19a5cc372a15fea974f7f0bbf6dd9ef3","type":"PII","value":"(100-1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Toxicokinetics","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":416.0068,"y":183.65997},"width":46.85315,"height":11.017679,"page":8}],"sectionNumber":27,"textBefore":"increase in dose ","textAfter":" mg/kg) mean","comments":null,"startOffset":5643,"endOffset":5652,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6182Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786776Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5f98c43a1e1be8ca43f252b076d70485","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Biotransformation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":483.72403,"y":326.01},"width":41.881012,"height":11.017679,"page":9}],"sectionNumber":50,"textBefore":"overview of the ","textAfter":" codes, structures","comments":null,"startOffset":600,"endOffset":608,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618201Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f53efddc132511ee2250f8abefce7e6","type":"PII","value":"300 80","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1-2: Summary of SYN545974 toxicokinetic profiles and their use to set high dose levels in\ntoxicity studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":305.33,"y":513.95},"width":14.619995,"height":10.0905,"page":9},{"topLeft":{"x":371.11,"y":513.95},"width":10.053986,"height":10.0905,"page":9}],"sectionNumber":23,"textBefore":null,"textAfter":null,"comments":null,"startOffset":61,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618202Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786778Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c596002c059f1781c11d93c0f8670249","type":"CBI_author","value":"Hutton E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1-3: Summary of studies conducted","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":364.75,"y":276.81},"width":33.837982,"height":10.0905,"page":10}],"sectionNumber":32,"textBefore":null,"textAfter":", OHagan P","comments":null,"startOffset":134,"endOffset":142,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618202Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5a800b5125869e8afe6dfb857b8fcfdb","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.1-3: Summary of studies conducted","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":436.666,"y":302.25},"width":34.354004,"height":10.0905,"page":10}],"sectionNumber":31,"textBefore":"Hutton E (2015a). ","textAfter":" File No.","comments":null,"startOffset":132,"endOffset":140,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618203Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c0e8ea945307c6e54ce46ceb8e964418","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.1-3: Summary of studies conducted","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":393.271,"y":230.70001},"width":34.354004,"height":10.0905,"page":10}],"sectionNumber":33,"textBefore":"Jewkes Y (2015). ","textAfter":" File No.","comments":null,"startOffset":74,"endOffset":82,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618203Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ffbc0024aa16ad1f796a1c568a76991f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.1-3: Summary of studies conducted","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":426.83496,"y":97.98401},"width":34.354004,"height":10.0905,"page":10}],"sectionNumber":37,"textBefore":"Penn L (2015). ","textAfter":" File No.","comments":null,"startOffset":85,"endOffset":93,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618204Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db2ad046c84c32742b92007130e0cfd2","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.1-3: Summary of studies conducted","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":399.979,"y":353.25},"width":34.354004,"height":10.0905,"page":10}],"sectionNumber":29,"textBefore":"Williams D (2015). ","textAfter":" File No.","comments":null,"startOffset":186,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618204Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f504636e06b01753ad8d39bf85e5d86e","type":"CBI_author","value":"OHagan P","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1-3: Summary of studies conducted","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.034,"y":276.81},"width":38.142944,"height":10.0905,"page":10}],"sectionNumber":32,"textBefore":"Hutton E, ","textAfter":" (2015). Syngenta","comments":null,"startOffset":144,"endOffset":152,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618204Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d8bd5e9a0c5c923a6340f13e692cc621","type":"hint_only","value":"author","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.1-3: Summary of studies conducted","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":393.07,"y":378.21},"width":28.873016,"height":10.018499,"page":10}],"sectionNumber":28,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618205Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"17bc6770a66df8a39fc5c63f31dccbfb","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.1-3: Summary of studies conducted","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":381.07,"y":194.70001},"width":34.470978,"height":10.0905,"page":10}],"sectionNumber":34,"textBefore":"Harris J (2014). ","textAfter":" File No.","comments":null,"startOffset":130,"endOffset":138,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618205Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9bcf23e47574f81b8d60e3d9bab9c4fd","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.1-3: Summary of studies conducted","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":381.07,"y":266.25},"width":34.470978,"height":10.0905,"page":10}],"sectionNumber":32,"textBefore":"OHagan P (2015). ","textAfter":" File No.","comments":null,"startOffset":161,"endOffset":169,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618206Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"404ce350b57ee3157e9f59f907b53db4","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.1-3: Summary of studies conducted","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":436.67804,"y":327.57},"width":34.354004,"height":10.0905,"page":10}],"sectionNumber":30,"textBefore":"Hutton E (2015). ","textAfter":" File No.","comments":null,"startOffset":143,"endOffset":151,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618207Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"44395db59eb7a89dacfb1409da678f91","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.1-3: Summary of studies conducted","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":380.95,"y":158.82},"width":34.470978,"height":10.0905,"page":10}],"sectionNumber":35,"textBefore":"Harris J (2014a). ","textAfter":" File No.","comments":null,"startOffset":133,"endOffset":141,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618207Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e7bb685ad34a7b5cd382974a7f941de2","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.1-3: Summary of studies conducted","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":438.913,"y":123.29999},"width":34.354004,"height":10.0905,"page":10}],"sectionNumber":36,"textBefore":"Allan G, (2015). ","textAfter":" File No.","comments":null,"startOffset":184,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618207Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28469bf6abf155eaf9654627d1aea90d","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Biotransformation","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":64.0,"y":421.0},"width":396.0,"height":271.0,"page":10}],"sectionNumber":50,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618208Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d05f51c49fe2de3fc9b5cad3231a6085","type":"CBI_author","value":"Bahig","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":165.2976,"y":222.53998},"width":27.16481,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"repeat administration (","textAfter":" et al,","comments":null,"startOffset":5379,"endOffset":5384,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618208Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6703debcca6eeba2f5ea5a1f0d993b4f","type":"CBI_author","value":"Pekari","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":249.577,"y":222.53998},"width":29.030579,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"et al, 1981; ","textAfter":" et al","comments":null,"startOffset":5398,"endOffset":5404,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618209Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b968a25a9cac1d91615e51415dbe4c23","type":"CBI_author","value":"O’Hagan P.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":469.45013,"y":140.70001},"width":53.307495,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"2015; Hutton E., ","textAfter":", 2015) the","comments":null,"startOffset":6061,"endOffset":6071,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61821Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0cb6da3687ff33e48fa79a0b140092b7","type":"PII","value":"(85-90","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":103.91568,"y":639.02},"width":30.18431,"height":11.017679,"page":12}],"sectionNumber":50,"textBefore":"absorption is constant ","textAfter":"%) below 30","comments":null,"startOffset":7670,"endOffset":7676,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61821Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786783Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d94849c4fad79c94be7783e105ee3b58","type":"PII","value":"85-90","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":468.15854,"y":752.78},"width":26.981445,"height":11.017679,"page":12}],"sectionNumber":50,"textBefore":"was at least ","textAfter":"% of a","comments":null,"startOffset":6854,"endOffset":6859,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618211Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786784Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"587ad94244b29af3ac9f8e36f1b3359a","type":"PII","value":"(100-300","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":484.05603,"y":127.619995},"width":41.68402,"height":11.017679,"page":12}],"sectionNumber":50,"textBefore":"reproductive toxicity studies ","textAfter":" mg/kg/day (female-male)","comments":null,"startOffset":10922,"endOffset":10930,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618211Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786784Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a5806e18fc2a31b92390a61a82ec4355","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":372.1215,"y":62.919983},"width":19.337433,"height":11.017679,"page":13}],"sectionNumber":54,"textBefore":"male and female ","textAfter":" Wistar rats.","comments":null,"startOffset":283,"endOffset":286,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618211Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c1db33339841014fbd6f547cdbbda55","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.1.1. Absorption, distribution, metabolism and excretion by oral route","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.44978,"y":175.38},"width":82.62306,"height":11.017679,"page":13}],"sectionNumber":53,"textBefore":null,"textAfter":null,"comments":null,"startOffset":251,"endOffset":268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618211Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e212cfec6bc871b937778e9789660d67","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.1.1. Absorption, distribution, metabolism and excretion by oral route","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":451.32785,"y":252.33002},"width":38.05127,"height":10.526819,"page":13}],"sectionNumber":51,"textBefore":"May 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":427,"endOffset":435,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618212Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"372d072e251a3939394c3a88c1af6fa8","type":"CBI_author","value":"Webbley K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.1.1. Absorption, distribution, metabolism and excretion by oral route","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.61816,"y":298.40997},"width":50.849792,"height":10.526819,"page":13}],"sectionNumber":51,"textBefore":"Report: K-CA 5.1.1/01 ","textAfter":" and Williams","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618212Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"071901876526eeaebc3583ab62535676","type":"PII","value":"(300-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":293.9065,"y":689.54},"width":41.363464,"height":11.017679,"page":13}],"sectionNumber":50,"textBefore":"rat long-term study ","textAfter":" mg/kg bw/day","comments":null,"startOffset":12060,"endOffset":12068,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618212Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786785Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e8a34a64cee0fde9ccff0c998a668847","type":"PII","value":"450000 44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1-3: Comparison of AUC0-t for Total Radioactivity in Plasma Following a single Oral\nAdministration of [phenyl-U-14C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":322.27,"y":519.47},"width":28.03598,"height":10.0905,"page":13},{"topLeft":{"x":421.39,"y":519.47},"width":10.059998,"height":10.0905,"page":13}],"sectionNumber":48,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618212Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786786Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"38375c7fa32a5f2f46eee4722f829300","type":"PII","value":"113000 14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1-3: Comparison of AUC0-t for Total Radioactivity in Plasma Following a single Oral\nAdministration of [phenyl-U-14C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":322.27,"y":564.35},"width":28.03598,"height":10.0905,"page":13},{"topLeft":{"x":421.39,"y":564.35},"width":10.059998,"height":10.0905,"page":13}],"sectionNumber":45,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618213Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786786Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"10b503f9be5ce19c6f1e1b0f542d5c9c","type":"PII","value":"316000 36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1-3: Comparison of AUC0-t for Total Radioactivity in Plasma Following a single Oral\nAdministration of [phenyl-U-14C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":322.27,"y":548.39},"width":28.03598,"height":10.0905,"page":13},{"topLeft":{"x":421.39,"y":548.39},"width":10.059998,"height":10.0905,"page":13}],"sectionNumber":46,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618213Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786787Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"283befc8bc513c919c4a6546848c46f8","type":"CBI_author","value":"Williams D.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.1.1. Absorption, distribution, metabolism and excretion by oral route","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":272.51544,"y":298.40997},"width":51.45746,"height":10.526819,"page":13}],"sectionNumber":51,"textBefore":"Webbley K. and ","textAfter":" (2015). SYN545974","comments":null,"startOffset":37,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618213Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3f409fed246cc4c88320a593230a04d8","type":"PII","value":"546000 62","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1-3: Comparison of AUC0-t for Total Radioactivity in Plasma Following a single Oral\nAdministration of [phenyl-U-14C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":322.27,"y":534.35},"width":28.03598,"height":10.0905,"page":13},{"topLeft":{"x":421.39,"y":534.35},"width":10.059998,"height":10.0905,"page":13}],"sectionNumber":47,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618214Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786788Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"16c3a065f14dfdc1636b6adaf1b00774","type":"CBI_address","value":"Quotient Bioresearch (Rushden) Ltd., Pegasus Way, Crown Business Park, Rushden, Northamptonshire NN10 6ER, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.1.1. Absorption, distribution, metabolism and excretion by oral route","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":336.43097,"y":275.37},"width":190.41956,"height":10.526819,"page":13},{"topLeft":{"x":133.82,"y":263.85004},"width":350.51868,"height":10.526819,"page":13}],"sectionNumber":51,"textBefore":"of 14 C-SYN545974. ","textAfter":". Quotient Bioresearch","comments":null,"startOffset":227,"endOffset":348,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618214Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"41efa18c5d8cbb028618e2391463a9e7","type":"CBI_address","value":"Syngenta Crop Protection Münchwilen AG","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.41,"y":605.78},"width":156.92502,"height":10.0905,"page":16}],"sectionNumber":56,"textBefore":null,"textAfter":null,"comments":null,"startOffset":38,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618214Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1bbc5dd24beaf5ac7452a703ea494346","type":"hint_only","value":"purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":63.984,"y":566.99},"width":28.467995,"height":10.018499,"page":16}],"sectionNumber":56,"textBefore":null,"textAfter":null,"comments":null,"startOffset":224,"endOffset":231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618214Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3110ab43f5046772f22e169a089f1bef","type":"hint_only","value":"purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":123.08699,"y":527.03},"width":27.981995,"height":10.018499,"page":16}],"sectionNumber":56,"textBefore":null,"textAfter":null,"comments":null,"startOffset":414,"endOffset":421,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618215Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5b017746c48e571edb7a42c3fc680b27","type":"CBI_address","value":"Syngenta Crop Protection","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.41,"y":511.55},"width":93.99704,"height":10.0905,"page":16}],"sectionNumber":56,"textBefore":null,"textAfter":" LLC","comments":null,"startOffset":246,"endOffset":270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618215Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5e9c3f43d51c26a37b4290c6dcd198c9","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":213.0,"y":237.0},"width":147.0,"height":67.0,"page":16}],"sectionNumber":57,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618215Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6cab931126e53cf7791875bedecb10fc","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":213.0,"y":415.0},"width":150.0,"height":77.0,"page":16}],"sectionNumber":57,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618215Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0f2738dd6528fa41deb676e2e5372299","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":213.0,"y":618.0},"width":151.0,"height":69.0,"page":16}],"sectionNumber":57,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618215Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"125a4f658911cbd15d594fbd12372999","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.21,"y":754.1},"width":15.940002,"height":10.0905,"page":17}],"sectionNumber":59,"textBefore":null,"textAfter":" Wistar","comments":null,"startOffset":8,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618215Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1ef0d7f5bb7fcef6929ca0f5296bbd15","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Test Animals:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":188.21,"y":649.1},"width":50.65303,"height":10.0905,"page":17}],"sectionNumber":59,"textBefore":null,"textAfter":null,"comments":null,"startOffset":692,"endOffset":705,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618216Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"964ecf3029a9a6cbff9cdab28104f089","type":"PII","value":"12100 13600","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.82,"y":133.62},"width":23.598999,"height":10.0905,"page":19},{"topLeft":{"x":231.53,"y":133.62},"width":23.598999,"height":10.0905,"page":19}],"sectionNumber":128,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618216Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786789Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0f1c60cdc5c6de62f1a8b963b2813fea","type":"PII","value":"3750 3510","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.11,"y":381.69},"width":19.044983,"height":10.0905,"page":19},{"topLeft":{"x":482.14,"y":381.69},"width":19.044983,"height":10.0905,"page":19}],"sectionNumber":108,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618216Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786789Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8bcb56d74cecf922b6a914b7081b6760","type":"PII","value":"183 152 13900 10700","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.77,"y":316.64996},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":358.03,"y":316.64996},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":416.83,"y":316.64996},"width":23.598969,"height":10.0905,"page":19},{"topLeft":{"x":479.86,"y":316.64996},"width":23.598969,"height":10.0905,"page":19}],"sectionNumber":114,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618216Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78679Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e7fec4d72dee131e4e35cdc3a9b37c83","type":"PII","value":"193 144 278 472 3180","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":180.38,"y":370.89},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":236.09,"y":370.89},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":294.77,"y":370.89},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":358.03,"y":370.89},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":419.11,"y":370.89},"width":19.044983,"height":10.0905,"page":19}],"sectionNumber":109,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618216Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78679Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2d3451ddc5811f655c9de238287e92d1","type":"PII","value":"12 46","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":107.9,"y":316.64996},"width":10.059998,"height":10.0905,"page":19},{"topLeft":{"x":179.3,"y":316.64996},"width":10.054001,"height":10.0905,"page":19}],"sectionNumber":114,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618217Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78679Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dea19fff6c5aac0db972d0469c1a681a","type":"PII","value":"342 354","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":180.38,"y":155.34003},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":236.09,"y":155.34003},"width":14.619995,"height":10.0905,"page":19}],"sectionNumber":126,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618217Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78679Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8729acca002a171413f57568b86a27be","type":"PII","value":"2930 2830 7880 10400","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.1,"y":193.02002},"width":19.044998,"height":10.0905,"page":19},{"topLeft":{"x":233.81,"y":193.02002},"width":19.044998,"height":10.0905,"page":19},{"topLeft":{"x":292.61,"y":193.02002},"width":19.044983,"height":10.0905,"page":19},{"topLeft":{"x":353.59,"y":193.02002},"width":23.598969,"height":10.0905,"page":19}],"sectionNumber":123,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618217Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786791Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5a93b6544bd29eb05cb2d6230aa87faf","type":"PII","value":"103 15700 20200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":358.03,"y":305.73004},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":416.83,"y":305.73004},"width":23.598969,"height":10.0905,"page":19},{"topLeft":{"x":479.86,"y":305.73004},"width":23.598969,"height":10.0905,"page":19}],"sectionNumber":115,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618217Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786791Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ae5c24e77b66c4c2b24edaeb44c5aeb8","type":"PII","value":"84 37","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":300.03198,"y":47.440002},"width":9.937012,"height":10.0905,"page":19},{"topLeft":{"x":356.47,"y":47.440002},"width":10.053986,"height":10.0905,"page":19}],"sectionNumber":132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618217Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786791Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d5adb5a68730252b23f0e54f0989a19","type":"PII","value":"107 246 384 6190 5980","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":236.09,"y":359.97},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":294.77,"y":359.97},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":358.03,"y":359.97},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":419.11,"y":359.97},"width":19.044983,"height":10.0905,"page":19},{"topLeft":{"x":482.14,"y":359.97},"width":19.044983,"height":10.0905,"page":19}],"sectionNumber":110,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618218Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786791Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8beb7f4e93a73acaa43ad59200aade6b","type":"PII","value":"352 296 418 472 20600","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":180.38,"y":257.13},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":236.09,"y":257.13},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":294.77,"y":257.13},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":358.03,"y":257.13},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":416.83,"y":257.13},"width":23.598969,"height":10.0905,"page":19}],"sectionNumber":119,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618218Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786792Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8ebb8588b360d101660c2053c899168a","type":"PII","value":"207 274 11100 7120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.77,"y":327.45},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":358.03,"y":327.45},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":416.83,"y":327.45},"width":23.598969,"height":10.0905,"page":19},{"topLeft":{"x":482.14,"y":327.45},"width":19.044983,"height":10.0905,"page":19}],"sectionNumber":113,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618218Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786792Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3b7115356286f0dc432955db25a02d21","type":"PII","value":"6440 6900","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.11,"y":284.01},"width":19.044983,"height":10.0905,"page":19},{"topLeft":{"x":482.14,"y":284.01},"width":19.044983,"height":10.0905,"page":19}],"sectionNumber":117,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618218Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786792Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c6dc564f043992c1bda6829241007435","type":"PII","value":"48 19","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":107.9,"y":284.01},"width":10.059998,"height":10.0905,"page":19},{"topLeft":{"x":179.3,"y":284.01},"width":10.054001,"height":10.0905,"page":19}],"sectionNumber":117,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618218Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786792Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"56cacb2d03f1dfc049bfa628c56079a9","type":"PII","value":"30 28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":107.9,"y":294.93},"width":10.059998,"height":10.0905,"page":19},{"topLeft":{"x":179.3,"y":294.93},"width":10.054001,"height":10.0905,"page":19}],"sectionNumber":116,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618219Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786793Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d00faa2fb303cf90e951aa51b1db64fa","type":"PII","value":"20600 18100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":416.83,"y":294.93},"width":23.598969,"height":10.0905,"page":19},{"topLeft":{"x":479.86,"y":294.93},"width":23.598969,"height":10.0905,"page":19}],"sectionNumber":116,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618219Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786793Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9b91fc00806d2248caf8c6ce14e5e2be","type":"PII","value":"183 262 8220 6280","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.77,"y":338.25},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":358.03,"y":338.25},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":419.11,"y":338.25},"width":19.044983,"height":10.0905,"page":19},{"topLeft":{"x":482.14,"y":338.25},"width":19.044983,"height":10.0905,"page":19}],"sectionNumber":112,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618219Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786793Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6e47125b29806bb415ea182248fcb1ff","type":"PII","value":"24 35","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":107.9,"y":305.73004},"width":10.059998,"height":10.0905,"page":19},{"topLeft":{"x":179.3,"y":305.73004},"width":10.054001,"height":10.0905,"page":19}],"sectionNumber":115,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618219Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786793Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fcc6232bed18bf7b6685ce0873a78c97","type":"PII","value":"203 336 7140 6540","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.77,"y":349.17},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":358.03,"y":349.17},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":419.11,"y":349.17},"width":19.044983,"height":10.0905,"page":19},{"topLeft":{"x":482.14,"y":349.17},"width":19.044983,"height":10.0905,"page":19}],"sectionNumber":111,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786793Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7a1c9b2dd498b318cd914ac8a0d6e839","type":"PII","value":"2150 2020 6800 7800 724000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.1,"y":214.26001},"width":19.044998,"height":10.0905,"page":19},{"topLeft":{"x":233.81,"y":214.26001},"width":19.044998,"height":10.0905,"page":19},{"topLeft":{"x":292.61,"y":214.26001},"width":19.044983,"height":10.0905,"page":19},{"topLeft":{"x":355.87,"y":214.26001},"width":19.044983,"height":10.0905,"page":19},{"topLeft":{"x":414.55,"y":214.26001},"width":28.03598,"height":10.0905,"page":19}],"sectionNumber":122,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786794Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ae5d353878ca89b6868f737034ed75ee","type":"PII","value":"742 1570","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":420.79,"y":47.440002},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":481.66,"y":47.440002},"width":19.044983,"height":10.0905,"page":19}],"sectionNumber":132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786794Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b65672e019cc6dd6ba5904d8987f787c","type":"PII","value":"3330 4300","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.11,"y":273.21002},"width":19.044983,"height":10.0905,"page":19},{"topLeft":{"x":482.14,"y":273.21002},"width":19.044983,"height":10.0905,"page":19}],"sectionNumber":118,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786794Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fb65fe9fa04fce45f15aa361585e2207","type":"PII","value":"50 309 179 418 372","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":111.362,"y":381.69},"width":9.936996,"height":10.0905,"page":19},{"topLeft":{"x":180.38,"y":381.69},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":236.09,"y":381.69},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":294.77,"y":381.69},"width":14.620026,"height":10.0905,"page":19},{"topLeft":{"x":358.03,"y":381.69},"width":14.619995,"height":10.0905,"page":19}],"sectionNumber":108,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786795Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d89b76fd73dbfa260064bb36444754f4","type":"PII","value":"08 298 358","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":111.482,"y":47.440002},"width":9.936996,"height":10.0905,"page":19},{"topLeft":{"x":178.34,"y":47.440002},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":233.81,"y":47.440002},"width":14.619995,"height":10.0905,"page":19}],"sectionNumber":132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618221Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786795Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8146eb0e2b9f9491bee13b05a2295bbf","type":"PII","value":"1300 1030","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.11,"y":392.49},"width":19.044983,"height":10.0905,"page":19},{"topLeft":{"x":482.14,"y":392.49},"width":19.044983,"height":10.0905,"page":19}],"sectionNumber":107,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618221Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786795Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"67047fcafe5bf0b4fd4930399cfaa1a0","type":"PII","value":"08 352 296 29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-1: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [pyrazole-5- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":111.362,"y":392.49},"width":9.936996,"height":10.0905,"page":19},{"topLeft":{"x":180.38,"y":392.49},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":236.09,"y":392.49},"width":14.619995,"height":10.0905,"page":19},{"topLeft":{"x":293.69,"y":392.49},"width":10.053986,"height":10.0905,"page":19}],"sectionNumber":107,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618221Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786795Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c1584e26a065ad89a57b714f30e2d101","type":"PII","value":"187 222 562 715 3720","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.34,"y":743.3},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":233.81,"y":743.3},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":294.29,"y":743.3},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":357.55,"y":743.3},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":418.63,"y":743.3},"width":19.044983,"height":10.0905,"page":20}],"sectionNumber":135,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618221Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786795Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dae1a0f226ca088a58795391514ba864","type":"PII","value":"50 249 259 291 557","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":111.482,"y":754.1},"width":9.936996,"height":10.0905,"page":20},{"topLeft":{"x":178.34,"y":754.1},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":233.81,"y":754.1},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":294.29,"y":754.1},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":357.55,"y":754.1},"width":14.619995,"height":10.0905,"page":20}],"sectionNumber":134,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618221Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786796Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"530890677f9d2616c632ce12dcaa77be","type":"PII","value":"16200 9650","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":173.78,"y":506.03},"width":23.598999,"height":10.0905,"page":20},{"topLeft":{"x":231.65,"y":506.03},"width":19.044998,"height":10.0905,"page":20}],"sectionNumber":154,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618222Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786796Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"33ae568edf13cf6c3ef9b7ed33ace250","type":"PII","value":"184 252 9850 6080","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.29,"y":689.06},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":357.55,"y":689.06},"width":14.620026,"height":10.0905,"page":20},{"topLeft":{"x":418.63,"y":689.06},"width":19.044983,"height":10.0905,"page":20},{"topLeft":{"x":481.66,"y":689.06},"width":19.044983,"height":10.0905,"page":20}],"sectionNumber":140,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618222Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786796Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"617a8be8e9ceb968b1dda9b2ffcf55b0","type":"PII","value":"113 159 458 511 4410","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.34,"y":732.38},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":233.81,"y":732.38},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":294.29,"y":732.38},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":357.55,"y":732.38},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":418.63,"y":732.38},"width":19.044983,"height":10.0905,"page":20}],"sectionNumber":136,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618222Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786797Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"42df150bd639088653ba8e60b83271ad","type":"PII","value":"3090 2370","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.63,"y":754.1},"width":19.044983,"height":10.0905,"page":20},{"topLeft":{"x":481.66,"y":754.1},"width":19.044983,"height":10.0905,"page":20}],"sectionNumber":134,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618222Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786797Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"63ceba683e5fb613a66c84ff8f5c5cb7","type":"PII","value":"12 46","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":108.02,"y":689.06},"width":10.059998,"height":10.0905,"page":20},{"topLeft":{"x":177.26,"y":689.06},"width":10.054001,"height":10.0905,"page":20}],"sectionNumber":140,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618223Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786797Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5546d1e1f03550335423106274ec0887","type":"PII","value":"165 8990 7680","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.55,"y":667.34},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":418.63,"y":667.34},"width":19.044983,"height":10.0905,"page":20},{"topLeft":{"x":481.66,"y":667.34},"width":19.044983,"height":10.0905,"page":20}],"sectionNumber":142,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618223Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786798Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e5d5a3746d3e1a72d26c8a32ee6bcef9","type":"PII","value":"133 11200 10100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.55,"y":678.14},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":416.35,"y":678.14},"width":23.598969,"height":10.0905,"page":20},{"topLeft":{"x":479.38,"y":678.14},"width":23.598969,"height":10.0905,"page":20}],"sectionNumber":141,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618223Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786798Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ef4cb276e17486e09377d8d2d624672f","type":"PII","value":"118 255 454 5620 3810","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.81,"y":721.58},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":294.29,"y":721.58},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":357.55,"y":721.58},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":418.63,"y":721.58},"width":19.044983,"height":10.0905,"page":20},{"topLeft":{"x":481.66,"y":721.58},"width":19.044983,"height":10.0905,"page":20}],"sectionNumber":137,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618223Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786798Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"872c309da8444254e746af42cf847979","type":"PII","value":"30 25","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":108.02,"y":667.34},"width":10.059998,"height":10.0905,"page":20},{"topLeft":{"x":177.26,"y":667.34},"width":10.054001,"height":10.0905,"page":20}],"sectionNumber":142,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618223Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786798Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b64bcbaabd08088b5166daa8c78d5875","type":"PII","value":"247 298 4930 2670","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.29,"y":710.66},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":357.55,"y":710.66},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":418.63,"y":710.66},"width":19.044983,"height":10.0905,"page":20},{"topLeft":{"x":481.66,"y":710.66},"width":19.044983,"height":10.0905,"page":20}],"sectionNumber":138,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618224Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786799Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"39a5a8634b14970ea6c2c4ce640181df","type":"PII","value":"2140 2930 8520 12800 449000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.06,"y":586.67},"width":19.044998,"height":10.0905,"page":20},{"topLeft":{"x":231.65,"y":586.67},"width":19.044998,"height":10.0905,"page":20},{"topLeft":{"x":292.13,"y":586.67},"width":19.044983,"height":10.0905,"page":20},{"topLeft":{"x":352.99,"y":586.67},"width":23.598969,"height":10.0905,"page":20},{"topLeft":{"x":414.07,"y":586.67},"width":28.03598,"height":10.0905,"page":20}],"sectionNumber":148,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618224Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786799Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"592deafe7b465555e755e7a911b64a35","type":"PII","value":"24 28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":108.02,"y":678.14},"width":10.059998,"height":10.0905,"page":20},{"topLeft":{"x":177.26,"y":678.14},"width":10.054001,"height":10.0905,"page":20}],"sectionNumber":141,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618224Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786799Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7f51576436ae9bf46830b5193b1ea377","type":"PII","value":"127 3870 3320","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.55,"y":656.42},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":418.63,"y":656.42},"width":19.044983,"height":10.0905,"page":20},{"topLeft":{"x":481.66,"y":656.42},"width":19.044983,"height":10.0905,"page":20}],"sectionNumber":143,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618224Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786799Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"000a16be5ff493e2d01cec42b5f2b6fe","type":"PII","value":"275 238","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.34,"y":527.75},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":233.81,"y":527.75},"width":14.619995,"height":10.0905,"page":20}],"sectionNumber":152,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618224Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.7868Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a350dd22eb16ac92ebd4714ea130f6f6","type":"PII","value":"3640 4200 11900 18100 562000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.06,"y":565.43},"width":19.044998,"height":10.0905,"page":20},{"topLeft":{"x":231.65,"y":565.43},"width":19.044998,"height":10.0905,"page":20},{"topLeft":{"x":289.85,"y":565.43},"width":23.598969,"height":10.0905,"page":20},{"topLeft":{"x":352.99,"y":565.43},"width":23.598969,"height":10.0905,"page":20},{"topLeft":{"x":414.07,"y":565.43},"width":28.03598,"height":10.0905,"page":20}],"sectionNumber":149,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":54,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618225Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.7868Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"51f5f0d43213f8b6dfe3761e019104ab","type":"PII","value":"298 358 562 715 11200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.34,"y":629.54},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":233.81,"y":629.54},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":294.29,"y":629.54},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":357.55,"y":629.54},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":416.35,"y":629.54},"width":23.598969,"height":10.0905,"page":20}],"sectionNumber":145,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618225Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.7868Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"320034413f5c2c9550b65c09cd58edd9","type":"PII","value":"48 20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":108.02,"y":656.42},"width":10.059998,"height":10.0905,"page":20},{"topLeft":{"x":177.26,"y":656.42},"width":10.054001,"height":10.0905,"page":20}],"sectionNumber":143,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618225Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.7868Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9b3505e473d3e48fa9086913a8960cb5","type":"PII","value":"284 351 9330 5940","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.29,"y":699.86},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":357.55,"y":699.86},"width":14.619995,"height":10.0905,"page":20},{"topLeft":{"x":418.63,"y":699.86},"width":19.044983,"height":10.0905,"page":20},{"topLeft":{"x":481.66,"y":699.86},"width":19.044983,"height":10.0905,"page":20}],"sectionNumber":139,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618225Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.7868Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8bb561dc7b27ec3a293821911e9ba712","type":"PII","value":"2380 1710","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-2: Blood Concentrations and Pharmacokinetic Parameters Following Single Oral or\nIntravenous Administration of [phenyl-U- 14 C]-SYN545974 to Rat Expressed as ng Equivalents of\nSYN545974/g","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.63,"y":645.62},"width":19.044983,"height":10.0905,"page":20},{"topLeft":{"x":481.66,"y":645.62},"width":19.044983,"height":10.0905,"page":20}],"sectionNumber":144,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618226Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786801Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dcdd48d7588b337ff54f8fe1289c77b1","type":"PII","value":"724000 106","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [pyrazole-5- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.23,"y":419.13},"width":28.03598,"height":10.0905,"page":21},{"topLeft":{"x":493.66,"y":419.13},"width":14.619995,"height":10.0905,"page":21}],"sectionNumber":170,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618226Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786801Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f90628081cbb140da374c28361045023","type":"PII","value":"20600 49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [pyrazole-5- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":263.93,"y":419.13},"width":23.598969,"height":10.0905,"page":21},{"topLeft":{"x":340.03,"y":419.13},"width":10.053986,"height":10.0905,"page":21}],"sectionNumber":170,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618226Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786801Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"809384b200fd121d1dd2aeaf51d4d594","type":"PII","value":"20200 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [pyrazole-5- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":263.93,"y":395.61},"width":23.598969,"height":10.0905,"page":21},{"topLeft":{"x":340.03,"y":395.61},"width":10.053986,"height":10.0905,"page":21}],"sectionNumber":171,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618226Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786801Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fab13c47313ac0bd81935dda24b53c81","type":"PII","value":"1000 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [pyrazole-5- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":76.704,"y":395.61},"width":19.044998,"height":10.0905,"page":21},{"topLeft":{"x":135.86,"y":395.61},"width":14.619995,"height":10.0905,"page":21}],"sectionNumber":170,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618226Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786802Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d0900ed88aaa29403cb6a9e504694cb","type":"PII","value":"1000 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [pyrazole-5- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":76.704,"y":580.67},"width":19.044998,"height":10.0905,"page":21},{"topLeft":{"x":132.14,"y":580.67},"width":14.619995,"height":10.0905,"page":21}],"sectionNumber":164,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618227Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786802Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"837aa8286b4b908128ffb454ddbf4b30","type":"PII","value":"724000 92","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [pyrazole-5- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.23,"y":395.61},"width":28.03598,"height":10.0905,"page":21},{"topLeft":{"x":492.58,"y":395.61},"width":10.053986,"height":10.0905,"page":21}],"sectionNumber":171,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618227Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786802Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d3da406e1846f52cb874f80724b092a","type":"PII","value":"24200 38","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [pyrazole-5- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":263.93,"y":580.67},"width":23.598969,"height":10.0905,"page":21},{"topLeft":{"x":340.03,"y":580.67},"width":10.053986,"height":10.0905,"page":21}],"sectionNumber":163,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618227Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786802Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7a662eee5adcbfc35816a26bd502b674","type":"PII","value":"25400 45","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [pyrazole-5- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":263.93,"y":604.22},"width":23.598969,"height":10.0905,"page":21},{"topLeft":{"x":340.03,"y":604.22},"width":10.059998,"height":10.0905,"page":21}],"sectionNumber":162,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618227Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786802Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"af6d89b3aa25e39d032a214247781cca","type":"PII","value":"826000 124","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [pyrazole-5- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.23,"y":580.67},"width":28.03598,"height":10.0905,"page":21},{"topLeft":{"x":493.66,"y":580.67},"width":14.619995,"height":10.0905,"page":21}],"sectionNumber":163,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618227Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786802Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cba4dd421bfc04ec378a4f3e21b906a0","type":"PII","value":"767000 126","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [pyrazole-5- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.23,"y":604.22},"width":28.03598,"height":10.0905,"page":21},{"topLeft":{"x":493.66,"y":604.22},"width":14.619995,"height":10.0905,"page":21}],"sectionNumber":162,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618228Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786803Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a6a5590f9b3e01b6ec48a7f2b08b5688","type":"PII","value":"13800 13","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [phenyl-U- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.29,"y":560.03},"width":23.598969,"height":10.0905,"page":22},{"topLeft":{"x":347.47,"y":560.03},"width":10.053986,"height":10.0905,"page":22}],"sectionNumber":181,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618228Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786803Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"81aab24b12a54202fe42aab2a0af17a3","type":"PII","value":"1000 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [phenyl-U- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.464,"y":560.03},"width":19.044998,"height":10.0905,"page":22},{"topLeft":{"x":143.78,"y":560.03},"width":14.619995,"height":10.0905,"page":22}],"sectionNumber":180,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618228Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786803Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"155dad5bda28c41ad2dd1ef9f98dce16","type":"PII","value":"15900 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [phenyl-U- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.29,"y":583.55},"width":23.598969,"height":10.0905,"page":22},{"topLeft":{"x":347.47,"y":583.55},"width":10.053986,"height":10.0905,"page":22}],"sectionNumber":180,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618228Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786803Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3542b551e4e558fd21c55e92184f4214","type":"PII","value":"450000 44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [phenyl-U- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.51,"y":560.03},"width":28.03598,"height":10.0905,"page":22},{"topLeft":{"x":492.22,"y":560.03},"width":10.053986,"height":10.0905,"page":22}],"sectionNumber":181,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618228Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786803Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b775e35dc071230caa35035f68c584b8","type":"PII","value":"546000 61","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [phenyl-U- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.51,"y":583.55},"width":28.03598,"height":10.0905,"page":22},{"topLeft":{"x":492.22,"y":583.55},"width":10.053986,"height":10.0905,"page":22}],"sectionNumber":180,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618229Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786803Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5a2ff5dd7a359fd219147c5bcdb7f974","type":"PII","value":"10100 14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [phenyl-U- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.29,"y":374.97},"width":23.598969,"height":10.0905,"page":22},{"topLeft":{"x":347.47,"y":374.97},"width":10.053986,"height":10.0905,"page":22}],"sectionNumber":189,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618229Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786804Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"68adf77c3b175499738b7118af72be9b","type":"PII","value":"1000 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [phenyl-U- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.464,"y":374.97},"width":19.044998,"height":10.0905,"page":22},{"topLeft":{"x":144.14,"y":374.97},"width":14.619995,"height":10.0905,"page":22}],"sectionNumber":188,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618229Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786804Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2cd41292731da5736d37d9c0572a4b9b","type":"PII","value":"11200 19","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [phenyl-U- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.29,"y":398.49},"width":23.598969,"height":10.0905,"page":22},{"topLeft":{"x":347.47,"y":398.49},"width":10.053986,"height":10.0905,"page":22}],"sectionNumber":188,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618229Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786804Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dd7ecbab07b0a76ce00c5fdaa1adb6b5","type":"PII","value":"353000 27","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [phenyl-U- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.51,"y":374.97},"width":28.03598,"height":10.0905,"page":22},{"topLeft":{"x":492.22,"y":374.97},"width":10.053986,"height":10.0905,"page":22}],"sectionNumber":189,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618229Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786804Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9b527f09a47328b247fbc354aece37da","type":"PII","value":"449000 52","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Single Oral Administration of [phenyl-U- 14 C]-SYN545974 to Male and Female Rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.51,"y":398.49},"width":28.03598,"height":10.0905,"page":22},{"topLeft":{"x":492.22,"y":398.49},"width":10.053986,"height":10.0905,"page":22}],"sectionNumber":188,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61823Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786804Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b49a8c46c4af4d3b53f78bbccd2cec6f","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":79.944,"y":518.99},"width":26.490997,"height":10.0905,"page":23}],"sectionNumber":213,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61823Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786805Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f11bb52d8186155f26def6595e8355d8","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":660.02},"width":22.059998,"height":10.0905,"page":23}],"sectionNumber":200,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61823Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786805Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e6b8940103475b6b860584579bcd0b58","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.664,"y":508.07},"width":31.050995,"height":10.0905,"page":23}],"sectionNumber":214,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61823Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786805Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6403eefa7a3393621e301c73b109bedd","type":"PII","value":"168 64","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.784,"y":486.35},"width":14.490997,"height":10.0905,"page":23},{"topLeft":{"x":151.1,"y":486.35},"width":10.054001,"height":10.0905,"page":23}],"sectionNumber":216,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61823Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786805Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4ba161dd86dec3c2cea2a4095140f3ef","type":"PII","value":"65 72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.36801,"y":486.35},"width":10.054001,"height":10.0905,"page":23},{"topLeft":{"x":218.93,"y":486.35},"width":10.054001,"height":10.0905,"page":23}],"sectionNumber":216,"textBefore":null,"textAfter":null,"comments":null,"startOffset":9,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618231Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786805Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ba8f382977faa3095a89c788e433b4da","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":649.22},"width":22.059998,"height":10.0905,"page":23}],"sectionNumber":201,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618231Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786806Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ef3bf8fd36cb34d5d33b2e6f4ee04207","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.664,"y":497.27},"width":31.050995,"height":10.0905,"page":23}],"sectionNumber":215,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618231Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786806Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"063d1db61440a4d309e67b585bf195eb","type":"PII","value":"02 13","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":368.938,"y":594.98},"width":10.053986,"height":10.0905,"page":23},{"topLeft":{"x":426.43,"y":594.98},"width":10.053986,"height":10.0905,"page":23}],"sectionNumber":206,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618231Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786806Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"36c7afe3870ce783e3a31010b04deff6","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":638.3},"width":22.059998,"height":10.0905,"page":23}],"sectionNumber":202,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618232Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786807Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"70ed559d7f3b57ad3d2cdb3daf24427d","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":79.944,"y":627.5},"width":26.490997,"height":10.0905,"page":23}],"sectionNumber":203,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618232Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786807Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1e317feffda37e2e87859bcb5884db56","type":"PII","value":"30 81","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":299.07797,"y":486.35},"width":10.053986,"height":10.0905,"page":23},{"topLeft":{"x":357.67,"y":486.35},"width":10.053986,"height":10.0905,"page":23}],"sectionNumber":216,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618232Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786807Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4d22fd0e7ecf79eb2840017b7fea4798","type":"PII","value":"27 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.198,"y":367.05},"width":10.054001,"height":10.0905,"page":23},{"topLeft":{"x":285.53,"y":367.05},"width":14.607971,"height":10.0905,"page":23}],"sectionNumber":227,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618232Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786808Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4ed1b237c7a6342d5609565fc40a64f2","type":"PII","value":"168 23","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.784,"y":594.98},"width":14.490997,"height":10.0905,"page":23},{"topLeft":{"x":151.1,"y":594.98},"width":10.054001,"height":10.0905,"page":23}],"sectionNumber":206,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618232Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786808Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2ff1a74443cf53d6ab35ab5c7d1b751d","type":"PII","value":"77 20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.36801,"y":594.98},"width":10.054001,"height":10.0905,"page":23},{"topLeft":{"x":218.93,"y":594.98},"width":10.054001,"height":10.0905,"page":23}],"sectionNumber":206,"textBefore":null,"textAfter":null,"comments":null,"startOffset":9,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618233Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786808Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"80742f7eddeb62b8ca1a88c469aa90a8","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.664,"y":616.58},"width":31.050995,"height":10.0905,"page":23}],"sectionNumber":204,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618233Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786808Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0a4ef17350b93b9194da66d1425b7414","type":"PII","value":"41 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":301.343,"y":367.05},"width":9.937012,"height":10.0905,"page":23},{"topLeft":{"x":355.39,"y":367.05},"width":14.607971,"height":10.0905,"page":23}],"sectionNumber":227,"textBefore":null,"textAfter":null,"comments":null,"startOffset":31,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618233Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786808Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12fb090d9e21721dd54ab48329a3da41","type":"PII","value":"80 85","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":439.96298,"y":367.05},"width":9.937012,"height":10.0905,"page":23},{"topLeft":{"x":490.42,"y":367.05},"width":10.053986,"height":10.0905,"page":23}],"sectionNumber":227,"textBefore":null,"textAfter":null,"comments":null,"startOffset":45,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618233Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786809Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6ddfe1db7a11d81cc9fd62359fe29538","type":"PII","value":"96 107","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":371.203,"y":367.05},"width":9.937012,"height":10.0905,"page":23},{"topLeft":{"x":424.15,"y":367.05},"width":14.607971,"height":10.0905,"page":23}],"sectionNumber":227,"textBefore":null,"textAfter":null,"comments":null,"startOffset":38,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618233Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786809Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fc8a060c89a768f50da6771ccbf5ea49","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.664,"y":605.78},"width":31.050995,"height":10.0905,"page":23}],"sectionNumber":205,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618234Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786809Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1ac3a17884d54cf5f2ef26bd4027a224","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":443.03},"width":22.059998,"height":10.0905,"page":23}],"sectionNumber":220,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618234Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786809Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4cfc48540c304f5f2b6d7a075842944d","type":"PII","value":"17 67","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.69797,"y":486.35},"width":10.053986,"height":10.0905,"page":23},{"topLeft":{"x":490.42,"y":486.35},"width":10.053986,"height":10.0905,"page":23}],"sectionNumber":216,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618234Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786809Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1cc0be3087b9c734c27683e7b69449c1","type":"PII","value":"55 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.198,"y":329.37},"width":10.054001,"height":10.0905,"page":23},{"topLeft":{"x":285.53,"y":329.37},"width":14.607971,"height":10.0905,"page":23}],"sectionNumber":230,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618234Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786809Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"497e4885aaa88537487dd4c950d9a684","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":432.11},"width":22.059998,"height":10.0905,"page":23}],"sectionNumber":221,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618234Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78681Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"035dfe96924599fe3b4378f9b2bec480","type":"PII","value":"49 19","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":299.07797,"y":594.98},"width":10.053986,"height":10.0905,"page":23},{"topLeft":{"x":357.67,"y":594.98},"width":10.053986,"height":10.0905,"page":23}],"sectionNumber":206,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618235Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78681Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c80cc39cb92c159f3ce8fd66d4e1766d","type":"PII","value":"79 101","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":301.343,"y":329.37},"width":9.937012,"height":10.0905,"page":23},{"topLeft":{"x":355.39,"y":329.37},"width":14.607971,"height":10.0905,"page":23}],"sectionNumber":230,"textBefore":null,"textAfter":null,"comments":null,"startOffset":31,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618235Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78681Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3e14b2d097884c9967720b6325a95348","type":"PII","value":"95 85","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":439.96298,"y":329.37},"width":9.937012,"height":10.0905,"page":23},{"topLeft":{"x":490.42,"y":329.37},"width":10.053986,"height":10.0905,"page":23}],"sectionNumber":230,"textBefore":null,"textAfter":null,"comments":null,"startOffset":45,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618235Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78681Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ce070696e3d33ac02a2906e945ffdf78","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":421.31},"width":22.059998,"height":10.0905,"page":23}],"sectionNumber":222,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618235Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786811Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cfb1f230e9de8196285e74536b55522d","type":"PII","value":"19 107","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":371.203,"y":329.37},"width":9.937012,"height":10.0905,"page":23},{"topLeft":{"x":424.15,"y":329.37},"width":14.607971,"height":10.0905,"page":23}],"sectionNumber":230,"textBefore":null,"textAfter":null,"comments":null,"startOffset":38,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618235Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786811Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"041585510c0745169f0bba90cfc8c7f8","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":79.944,"y":410.49},"width":26.490997,"height":10.0905,"page":23}],"sectionNumber":223,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618236Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786811Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9ff6ab0f4d1f46b188c20b8cf4d4b6e7","type":"PII","value":"75 74","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.198,"y":486.35},"width":10.054001,"height":10.0905,"page":23},{"topLeft":{"x":287.81,"y":486.35},"width":10.053986,"height":10.0905,"page":23}],"sectionNumber":216,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618236Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786811Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"99bb7be9d9ac6aad44f145587a764fb5","type":"PII","value":"46 94","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.36801,"y":367.05},"width":10.054001,"height":10.0905,"page":23},{"topLeft":{"x":218.93,"y":367.05},"width":10.054001,"height":10.0905,"page":23}],"sectionNumber":227,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618236Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786812Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e079794a3fa1947a7e8ac04a0ece82e5","type":"PII","value":"19 15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.69797,"y":594.98},"width":10.053986,"height":10.0905,"page":23},{"topLeft":{"x":490.42,"y":594.98},"width":10.053986,"height":10.0905,"page":23}],"sectionNumber":206,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618236Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786812Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1af3c483731b93d75f75e0a6a41e4bd7","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":551.51},"width":22.059998,"height":10.0905,"page":23}],"sectionNumber":210,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618236Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786812Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7207bf3ea22c3bcd9fcb37ceabc810eb","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.664,"y":399.57},"width":31.050995,"height":10.0905,"page":23}],"sectionNumber":224,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618237Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786812Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"baf8174025506d263f2c0403545ae934","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.664,"y":388.77},"width":31.050995,"height":10.0905,"page":23}],"sectionNumber":225,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618237Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786812Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9a65d3a0bdcb1d1a066492880b38c911","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":540.59},"width":22.059998,"height":10.0905,"page":23}],"sectionNumber":211,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618237Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786813Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d325a5e67b9c167940b63b2beffda293","type":"PII","value":"24 93","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":368.938,"y":486.35},"width":10.053986,"height":10.0905,"page":23},{"topLeft":{"x":426.43,"y":486.35},"width":10.053986,"height":10.0905,"page":23}],"sectionNumber":216,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618237Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786813Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ffafe3fe1afa64a94959624dee7e42c9","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":529.79},"width":22.059998,"height":10.0905,"page":23}],"sectionNumber":212,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618237Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786813Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b6722f45ab22c8d424523ef0ccc94a64","type":"PII","value":"55 23","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.198,"y":594.98},"width":10.054001,"height":10.0905,"page":23},{"topLeft":{"x":287.81,"y":594.98},"width":10.053986,"height":10.0905,"page":23}],"sectionNumber":206,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618238Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786813Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"964db498a2f59e6c082bb0cdb1d0ed8a","type":"PII","value":"81 94","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.36801,"y":329.37},"width":10.054001,"height":10.0905,"page":23},{"topLeft":{"x":218.93,"y":329.37},"width":10.054001,"height":10.0905,"page":23}],"sectionNumber":230,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618238Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786813Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f00a67c7387319247c957fc514f1e63c","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":625.7},"width":22.059998,"height":10.0905,"page":24}],"sectionNumber":241,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618238Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786814Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0f2a4a63d2078229c64eb4a7a583a188","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.664,"y":484.55},"width":31.050995,"height":10.0905,"page":24}],"sectionNumber":254,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618238Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786814Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"43743f9ad83f51f5ec190edcd9d9fbca","type":"PII","value":"01 21","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":368.938,"y":582.23},"width":10.053986,"height":10.0905,"page":24},{"topLeft":{"x":426.43,"y":582.23},"width":10.053986,"height":10.0905,"page":24}],"sectionNumber":245,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618238Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786814Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bf3174356ff5e746b26166c4beb4d7a7","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":636.5},"width":22.059998,"height":10.0905,"page":24}],"sectionNumber":240,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618239Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786814Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"05f298b2853f775124660becaf3cae62","type":"PII","value":"29 78","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.36801,"y":473.75},"width":10.054001,"height":10.0905,"page":24},{"topLeft":{"x":218.93,"y":473.75},"width":10.054001,"height":10.0905,"page":24}],"sectionNumber":255,"textBefore":null,"textAfter":null,"comments":null,"startOffset":9,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618239Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786815Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"59059c0aff9e65a4cc3cec54161dffcf","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.664,"y":495.47},"width":31.050995,"height":10.0905,"page":24}],"sectionNumber":253,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618239Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786815Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b4c0d55eaba9e8c858e6bdb1a86bec1d","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":647.42},"width":22.059998,"height":10.0905,"page":24}],"sectionNumber":239,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618239Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786815Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1fc8c406d8db28cc6b250cae2f5b82b3","type":"PII","value":"168 74","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.784,"y":473.75},"width":14.490997,"height":10.0905,"page":24},{"topLeft":{"x":151.1,"y":473.75},"width":10.054001,"height":10.0905,"page":24}],"sectionNumber":255,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618239Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786816Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"74bdd936e841cb197977e0f8b88ed7f9","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":79.944,"y":506.27},"width":26.490997,"height":10.0905,"page":24}],"sectionNumber":252,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61824Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786816Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"19cf24327b0e69e773b27766fa4e7c33","type":"PII","value":"23 20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.198,"y":582.23},"width":10.054001,"height":10.095,"page":24},{"topLeft":{"x":287.81,"y":582.23},"width":10.053986,"height":10.0905,"page":24}],"sectionNumber":245,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61824Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786816Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1db4508136ea468593682c1bed7cc6f7","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":517.19},"width":22.059998,"height":10.0905,"page":24}],"sectionNumber":251,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61824Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786816Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8b2f5e39b71719837a6880df63e2f7b9","type":"PII","value":"38 66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":368.95,"y":473.75},"width":10.059998,"height":10.0905,"page":24},{"topLeft":{"x":426.43,"y":473.75},"width":10.053986,"height":10.0905,"page":24}],"sectionNumber":255,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61824Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786817Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"302de0bbcba0e70bc8eb29660921c361","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":527.99},"width":22.059998,"height":10.0905,"page":24}],"sectionNumber":250,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61824Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786817Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4d7e406b86fb224f291e6aa6c68c267c","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.664,"y":376.05},"width":31.050995,"height":10.0905,"page":24}],"sectionNumber":264,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618241Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786817Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b3acdecb00af63e42a6ebfd8fabee992","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.664,"y":386.97},"width":31.050995,"height":10.0905,"page":24}],"sectionNumber":263,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618241Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786817Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"871e1398e753e0b8d1a66c2d6ef090ff","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":538.91},"width":22.059998,"height":10.0905,"page":24}],"sectionNumber":249,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618241Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786817Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"571c5fb211c28b55bff43b3abd5f91a3","type":"PII","value":"93 27","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.69797,"y":582.23},"width":10.053986,"height":10.0905,"page":24},{"topLeft":{"x":490.42,"y":582.23},"width":10.053986,"height":10.0905,"page":24}],"sectionNumber":245,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618241Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786817Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"650451b674b0f0036a30812e92588383","type":"PII","value":"24 73","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.198,"y":473.75},"width":10.054001,"height":10.0905,"page":24},{"topLeft":{"x":287.81,"y":473.75},"width":10.053986,"height":10.0905,"page":24}],"sectionNumber":255,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618241Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786818Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2ba204a3678f23f64c4da699bf2bacac","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":79.944,"y":397.77},"width":26.490997,"height":10.0905,"page":24}],"sectionNumber":262,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618242Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786818Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ec8d1d0eb835754ee7e4f10464faefc2","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":408.69},"width":22.059998,"height":10.0905,"page":24}],"sectionNumber":261,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618242Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786818Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cb38504f144e58bb2086b5ef3493b0bc","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":419.49},"width":22.059998,"height":10.0905,"page":24}],"sectionNumber":260,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618242Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786818Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"59b7d544df8f9920b402ffbf69d3c7aa","type":"PII","value":"83 26","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":299.07797,"y":582.23},"width":10.053986,"height":10.0905,"page":24},{"topLeft":{"x":357.67,"y":582.23},"width":10.053986,"height":10.0905,"page":24}],"sectionNumber":245,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618242Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786818Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d86d85cb36b4150c3000871dcbb0afbe","type":"PII","value":"64 54","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.69797,"y":473.75},"width":10.053986,"height":10.0905,"page":24},{"topLeft":{"x":490.42,"y":473.75},"width":10.053986,"height":10.0905,"page":24}],"sectionNumber":255,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618242Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786818Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5fb22b870c52f13e2269f33e982cba40","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.224,"y":430.31},"width":22.059998,"height":10.0905,"page":24}],"sectionNumber":259,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618243Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786819Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8ccf4a15859219cd41e0af6ba53aedf3","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.664,"y":593.18},"width":31.050995,"height":10.0905,"page":24}],"sectionNumber":244,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618243Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786819Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e2fb76396668954ddc392098cffd233a","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.664,"y":603.98},"width":31.050995,"height":10.0905,"page":24}],"sectionNumber":243,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618243Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786819Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d1a28b59fee5924ea5993135d4025c98","type":"PII","value":"168 18","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.784,"y":582.23},"width":14.490997,"height":10.0905,"page":24},{"topLeft":{"x":151.1,"y":582.23},"width":10.054001,"height":10.095,"page":24}],"sectionNumber":245,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618243Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786819Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed7c4c77811c7012fa088fedf79b8f29","type":"PII","value":"67 17","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.36801,"y":582.23},"width":10.054001,"height":10.095,"page":24},{"topLeft":{"x":218.93,"y":582.23},"width":10.054001,"height":10.095,"page":24}],"sectionNumber":245,"textBefore":null,"textAfter":null,"comments":null,"startOffset":9,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618243Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78682Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2930f9ed5e9e690b5d75c5a328ec2b0b","type":"PII","value":"54 70","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":299.07797,"y":473.75},"width":10.053986,"height":10.0905,"page":24},{"topLeft":{"x":357.67,"y":473.75},"width":10.059998,"height":10.0905,"page":24}],"sectionNumber":255,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618244Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78682Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0ee2e28bde0d21db0bd14a5b13f189cd","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":79.944,"y":614.78},"width":26.490997,"height":10.0905,"page":24}],"sectionNumber":242,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618244Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78682Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"84117bb427c005c04de7066b7665323f","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"CONCLUSION:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.44978,"y":135.29999},"width":82.552475,"height":11.017679,"page":25}],"sectionNumber":275,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1028,"endOffset":1045,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618244Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de48bad7430a56c68d013e9df5bbdd08","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: CONCLUSION:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":404.47,"y":213.29999},"width":57.80194,"height":10.526819,"page":25}],"sectionNumber":273,"textBefore":"EH33 2NE, UK. ","textAfter":" Report No.","comments":null,"startOffset":232,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618244Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c343ff534a11191352191df6dc1d7a34","type":"CBI_address","value":"Charles River, Tranent, Edinburgh, EH33 2NE, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: CONCLUSION:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":175.19386,"y":213.29999},"width":218.77568,"height":10.526819,"page":25}],"sectionNumber":273,"textBefore":"in the Rat. ","textAfter":". Charles River","comments":null,"startOffset":183,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618245Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"01fb454110041d584c8afa67478d811f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: CONCLUSION:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":322.85147,"y":201.77997},"width":38.160828,"height":10.526819,"page":25}],"sectionNumber":273,"textBefore":"June 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":302,"endOffset":310,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618245Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fcb03e988718af8eb66f6d258413e43c","type":"CBI_author","value":"Hutton E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":204.05035,"y":236.34003},"width":43.658646,"height":10.526819,"page":25}],"sectionNumber":273,"textBefore":"Report: K-CA 5.1.1/02 ","textAfter":" (2015). SYN545974","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618245Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cb648ef5877d9510ff14aec470e38cf1","type":"CBI_author","value":"Webbley K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.73944,"y":286.05},"width":51.430725,"height":11.017679,"page":25}],"sectionNumber":275,"textBefore":"related metabolites. (","textAfter":" and Williams","comments":null,"startOffset":819,"endOffset":828,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618245Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a4bd4233ba84aeb622a9a00a74b431b","type":"CBI_author","value":"Williams D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.5124,"y":286.05},"width":52.01584,"height":11.017679,"page":25}],"sectionNumber":275,"textBefore":"(Webbley K and ","textAfter":", 2015) Guidelines:","comments":null,"startOffset":833,"endOffset":843,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618245Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f417fa52bcec69a135eb73b4a6ed184b","type":"PII","value":"(67-81","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":363.57648,"y":221.46002},"width":30.613495,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"in the bile ","textAfter":"%). Elimination via","comments":null,"startOffset":3278,"endOffset":3284,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618246Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786821Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9d155b7f213bd163df6bce1bdf45545f","type":"PII","value":"43-49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":277.86417,"y":82.359985},"width":26.665802,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"both radiolabels, with ","textAfter":"% of the","comments":null,"startOffset":4169,"endOffset":4174,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618246Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786821Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7ae84c7e22d60d6f99c6b7a9fd17adf2","type":"PII","value":"101-102","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":201.47617,"y":461.87},"width":37.77385,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"a mean of ","textAfter":"% of the","comments":null,"startOffset":1797,"endOffset":1804,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618246Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786822Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"22ea0f36bdd9c6354a8ffeb19ea11738","type":"PII","value":"18-26","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":458.78986,"y":588.38},"width":26.750122,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"excretion accounted for ","textAfter":"% of the","comments":null,"startOffset":1186,"endOffset":1191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618246Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786822Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7346c6d37b512521007f4eb5a70f8b7f","type":"PII","value":"(67-76","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":259.88882,"y":588.38},"width":30.48114,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"in the feces ","textAfter":"%). Urinary excretion","comments":null,"startOffset":1144,"endOffset":1150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618246Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786822Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e95e3eb1b33f2c52830069fc44950e18","type":"PII","value":"91-92","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":461.94183,"y":512.51},"width":26.598145,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"both radiolabels, with ","textAfter":"% of the","comments":null,"startOffset":1595,"endOffset":1600,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618247Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786823Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5b9b8a0845a6d71769f5998061202281","type":"PII","value":"101-103","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.32368,"y":537.71},"width":37.52632,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"a mean of ","textAfter":"% of the","comments":null,"startOffset":1338,"endOffset":1345,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618247Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786823Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6c6d053fcdabd1fb54c33b4baf9728f3","type":"PII","value":"14-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.49902,"y":423.95},"width":26.55098,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"the feces and ","textAfter":"% in the","comments":null,"startOffset":2095,"endOffset":2100,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618247Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786823Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b5b409266dc8679714ac01b23f0dfac1","type":"PII","value":"10-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":126.94513,"y":208.85999},"width":26.59488,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"feces accounted for ","textAfter":"% of the","comments":null,"startOffset":3328,"endOffset":3333,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618247Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786823Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"47498a11837a6edd53227f7f16896d97","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":255.77089,"y":664.22},"width":61.653793,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"reported separately, under ","textAfter":" Study No.","comments":null,"startOffset":655,"endOffset":668,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618247Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df0c2224baa18e668e5f030c0d28d588","type":"PII","value":"97-99","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.93436,"y":259.40997},"width":26.715652,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"a mean of ","textAfter":"% of the","comments":null,"startOffset":2937,"endOffset":2942,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618248Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786823Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ef4cb5d31a61cbaeb780adaf5a4ebeff","type":"PII","value":"98-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":256.16837,"y":170.94},"width":32.281616,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"a mean of ","textAfter":"% of the","comments":null,"startOffset":3550,"endOffset":3556,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618248Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786824Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"975b6357ed05c31535ca0867e8d6b21f","type":"PII","value":"15-18","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":324.1861,"y":145.62},"width":26.683868,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"in the feces, ","textAfter":"% in the","comments":null,"startOffset":3765,"endOffset":3770,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618248Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786824Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aa719db6abe162870a7f54ce22efe0a2","type":"PII","value":"(98-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":454.9988,"y":525.11},"width":36.181152,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"of administered radioactivity ","textAfter":"%) was excreted","comments":null,"startOffset":1488,"endOffset":1495,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618248Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786824Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7c576910c67569b3fdc70a8822205c5b","type":"PII","value":"84-85","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":435.25763,"y":436.55},"width":26.882355,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"both radiolabels, with ","textAfter":"% of the","comments":null,"startOffset":2050,"endOffset":2055,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618248Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786824Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f00d2212b210a7e9c41bf119b4582993","type":"PII","value":"(91-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":359.6794,"y":613.7},"width":30.550568,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"of administered radioactivity ","textAfter":"%) was excreted","comments":null,"startOffset":960,"endOffset":966,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618249Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786824Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"65c22388d3a0da346cc5d71c452cb145","type":"PII","value":"76-79","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":140.14896,"y":145.62},"width":26.59105,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"both radiolabels, with ","textAfter":"% of the","comments":null,"startOffset":3723,"endOffset":3728,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618249Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786825Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bd7a12852bf031ef9a7c685cc5a21b75","type":"PII","value":"97-99","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":158.71829,"y":626.3},"width":26.62172,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"a mean of ","textAfter":"% of the","comments":null,"startOffset":812,"endOffset":817,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618249Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786825Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a817e286758416e7eded5317231e94a4","type":"PII","value":"97-99","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":263.15668,"y":107.58002},"width":26.733307,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"a mean of ","textAfter":"% of the","comments":null,"startOffset":3959,"endOffset":3964,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618249Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786825Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6f2bea3eccc7a600774bf038d725e3de","type":"PII","value":"33-41","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":462.31836,"y":82.359985},"width":26.70163,"height":11.017679,"page":26}],"sectionNumber":276,"textBefore":"in the feces, ","textAfter":"% in the","comments":null,"startOffset":4211,"endOffset":4216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618249Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786826Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4fabfa9bb46df5b5e650b5000d4305c0","type":"PII","value":"(50-55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":117.726715,"y":664.22},"width":30.29329,"height":11.017679,"page":27}],"sectionNumber":276,"textBefore":"100 mg/kg dose ","textAfter":"%) around 2","comments":null,"startOffset":4824,"endOffset":4830,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61825Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786826Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4cc5911e31091608cb896711918b14a7","type":"PII","value":"50-55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":340.81378,"y":600.74},"width":26.856201,"height":10.929359,"page":27}],"sectionNumber":276,"textBefore":"in males and ","textAfter":"% at 100","comments":null,"startOffset":5233,"endOffset":5238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61825Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786826Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7197374cf83e901cf7ee3c4dbdf16e59","type":"PII","value":"(85-87","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.961,"y":676.94},"width":30.348969,"height":11.017679,"page":27}],"sectionNumber":276,"textBefore":"5 mg/kg dose ","textAfter":"%), and in","comments":null,"startOffset":4777,"endOffset":4783,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61825Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786826Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e871599e099b19802f19364976644244","type":"PII","value":"(87-90","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":343.83124,"y":664.22},"width":30.318726,"height":11.017679,"page":27}],"sectionNumber":276,"textBefore":"5 mg/kg dose ","textAfter":"%). Irrespective of","comments":null,"startOffset":4874,"endOffset":4880,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61825Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786826Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"53991f421ff77915647c7b859690f7b8","type":"hint_only","value":"purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":123.08699,"y":288.93},"width":27.981995,"height":10.018499,"page":27}],"sectionNumber":277,"textBefore":null,"textAfter":null,"comments":null,"startOffset":410,"endOffset":417,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61825Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"20b56ce9b544f07f39c0b2a7a0fab3fb","type":"PII","value":"(19-24","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":88.4376,"y":676.94},"width":30.182396,"height":11.017679,"page":27}],"sectionNumber":276,"textBefore":"300 mg/kg dose ","textAfter":"%) was around","comments":null,"startOffset":4721,"endOffset":4727,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618251Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786827Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8a01feb1b23320a6a248df47abd820a4","type":"PII","value":"19-24","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":167.58336,"y":600.74},"width":26.636642,"height":10.929359,"page":27}],"sectionNumber":276,"textBefore":"oral dose to ","textAfter":"% at 300","comments":null,"startOffset":5200,"endOffset":5205,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618251Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786827Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b71b38519b218a9350bb6f33a57e4889","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":63.984,"y":328.89},"width":28.467995,"height":10.018499,"page":27}],"sectionNumber":277,"textBefore":null,"textAfter":null,"comments":null,"startOffset":142,"endOffset":149,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618251Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b7a5d47745880c94f4148247d27bf348","type":"CBI_address","value":"Syngenta Crop Protection","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.41,"y":273.57},"width":93.99704,"height":10.0905,"page":27}],"sectionNumber":277,"textBefore":null,"textAfter":" LLC","comments":null,"startOffset":246,"endOffset":270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618251Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e3de4a4cb95dcfc4c396eaa4df3f6268","type":"PII","value":"85-90","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":457.9574,"y":613.46},"width":26.742584,"height":10.929359,"page":27}],"sectionNumber":276,"textBefore":"dose from approximately ","textAfter":"% of the","comments":null,"startOffset":5165,"endOffset":5170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618251Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786828Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b1dcfe1549a428370efc841be3274e92","type":"CBI_address","value":"Syngenta Crop Protection Münchwilen AG","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.41,"y":367.65},"width":156.92502,"height":10.0905,"page":27}],"sectionNumber":277,"textBefore":null,"textAfter":null,"comments":null,"startOffset":38,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618251Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eda93fd3aa1964a29505b798c8002961","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":213.0,"y":380.0},"width":151.0,"height":69.0,"page":27}],"sectionNumber":276,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618252Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"988bbb345408f808d0665045398eca61","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":213.0,"y":177.0},"width":150.0,"height":77.0,"page":27}],"sectionNumber":276,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618252Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"00883b8d38ba774a9b8cb31ed8d1b98f","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.49,"y":533.03},"width":15.940002,"height":10.0905,"page":28}],"sectionNumber":280,"textBefore":null,"textAfter":" Wistar","comments":null,"startOffset":35,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618252Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"32b8d176b9045522cf68e9e01d27d208","type":"PII","value":"10-11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":259.32504,"y":285.21002},"width":22.218933,"height":10.0905,"page":28}],"sectionNumber":280,"textBefore":"38-80% Air changes: ","textAfter":" changes/hour Photoperiod:","comments":null,"startOffset":1023,"endOffset":1028,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618252Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786829Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"886adfa2b2b42cd5fdb7c9e21ed2353f","type":"PII","value":"10-12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.55304,"y":500.51},"width":21.993958,"height":10.0905,"page":28}],"sectionNumber":280,"textBefore":"6 & 8: ","textAfter":" weeks 235","comments":null,"startOffset":134,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618253Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786829Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"37a24ba8bb7918c53977514cb26b764a","type":"CBI_address","value":"Special Diet Services, Stepfield, Witham, Essex, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":354.034,"y":344.61},"width":150.4902,"height":10.0905,"page":28},{"topLeft":{"x":211.49,"y":334.29},"width":39.412018,"height":10.0905,"page":28}],"sectionNumber":280,"textBefore":"No.1 maintenance diet, ","textAfter":". Ad libitum","comments":null,"startOffset":854,"endOffset":905,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618253Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0e5d5536c55044975a2a265078f26c9f","type":"PII","value":"38-80","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.694,"y":296.49},"width":22.093018,"height":10.0905,"page":28}],"sectionNumber":280,"textBefore":"Temperature: 18-21C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":1003,"endOffset":1008,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618253Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786829Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"19bc58df1872a161c1edd09564b7eaa5","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":213.0,"y":696.0},"width":147.0,"height":67.0,"page":28}],"sectionNumber":281,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618253Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0cf0aa137597c3e34aeaf1a904211fa5","type":"CBI_author","value":"MacDonald, M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Excretion studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.22737,"y":588.38},"width":70.29808,"height":11.017679,"page":30}],"sectionNumber":295,"textBefore":"separate study (","textAfter":" 2015) SYN545974","comments":null,"startOffset":819,"endOffset":831,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618253Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"97dc5961965891d95d14584b737c5f3a","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Excretion studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":499.0398,"y":676.94},"width":26.700256,"height":11.017679,"page":30}],"sectionNumber":295,"textBefore":"12-24, 24-48 and ","textAfter":" hours after","comments":null,"startOffset":470,"endOffset":475,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618254Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78683Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cb0cf1d3c56f0c0e11d2d0ec400ec3d1","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Excretion studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":63.984,"y":575.75},"width":61.874573,"height":11.017679,"page":30}],"sectionNumber":295,"textBefore":"in the Rat. ","textAfter":" Report No.","comments":null,"startOffset":880,"endOffset":893,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618254Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d061730d677c06fe73743f7b8fd53132","type":"PII","value":"12-24","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Excretion studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.12842,"y":676.94},"width":26.581573,"height":11.017679,"page":30}],"sectionNumber":295,"textBefore":"2-4, 4-8, 8-12, ","textAfter":", 24-48 and","comments":null,"startOffset":453,"endOffset":458,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618254Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78683Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db805642bb022bbe9101dd8069c1b19e","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Excretion studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.16843,"y":676.94},"width":26.731537,"height":11.017679,"page":30}],"sectionNumber":295,"textBefore":"4-8, 8-12, 12-24, ","textAfter":" and 48-72","comments":null,"startOffset":460,"endOffset":465,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618254Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78683Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3df248ae6b1d7c5ce1eeba7c2c00fd1b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Excretion studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":218.73169,"y":575.75},"width":41.881134,"height":11.017679,"page":30}],"sectionNumber":295,"textBefore":"No. 34216. (","textAfter":" File no.","comments":null,"startOffset":913,"endOffset":921,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618255Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"07aba002948c635f7d968496305bacb8","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.02,"y":524.15},"width":22.054,"height":10.0905,"page":31}],"sectionNumber":306,"textBefore":"0-24 h ","textAfter":" h 48-72","comments":null,"startOffset":25,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618255Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78683Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5186092649c5973cb0f39ba792629346","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.02,"y":512.99},"width":22.054,"height":10.0905,"page":31}],"sectionNumber":304,"textBefore":"h 24-48 h ","textAfter":" h 72-96","comments":null,"startOffset":23,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618255Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786831Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e20fffc2eba3bcf98f8a5789a861e65d","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.02,"y":596.42},"width":22.054,"height":10.0905,"page":31}],"sectionNumber":301,"textBefore":"h 48-72 h ","textAfter":" h 96-120","comments":null,"startOffset":35,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618255Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786831Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"278b3876b8fcedf9fcd27cb1c50b1e44","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.02,"y":501.83},"width":22.054,"height":10.0905,"page":31}],"sectionNumber":305,"textBefore":"h 48-72 h ","textAfter":" h 96-120","comments":null,"startOffset":32,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618255Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786832Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"234522bbbdf4a345e287d38f74eccfda","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.58,"y":468.35},"width":31.059998,"height":10.0905,"page":31}],"sectionNumber":303,"textBefore":"h 120-144 h ","textAfter":" h Subtotal","comments":null,"startOffset":60,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618256Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786832Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0f3cbf3f6c0e099b4c47345e93d3fcbe","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.74,"y":490.67},"width":26.490997,"height":10.0905,"page":31}],"sectionNumber":304,"textBefore":"h 72-96 h ","textAfter":" h 120-144","comments":null,"startOffset":39,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618256Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786832Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f981841f25369c4be3e228ea95a2154f","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.58,"y":479.51},"width":31.050995,"height":10.0905,"page":31}],"sectionNumber":304,"textBefore":"h 96-120 h ","textAfter":" h 144-168","comments":null,"startOffset":48,"endOffset":55,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618256Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786832Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4a198bce34cf5ea3c8829b9e52b5174b","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.02,"y":620.42},"width":22.054,"height":10.0905,"page":31}],"sectionNumber":301,"textBefore":"h 8-24 h ","textAfter":" h 48-72","comments":null,"startOffset":19,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618256Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786832Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7eec8d7a11587128b665f874d8691d03","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.02,"y":608.42},"width":22.054,"height":10.0905,"page":31}],"sectionNumber":301,"textBefore":"h 24-48 h ","textAfter":" h 72-96","comments":null,"startOffset":27,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618256Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786832Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"562d6a5838a9692aa4729a4798482254","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.74,"y":584.39},"width":26.490997,"height":10.0905,"page":31}],"sectionNumber":301,"textBefore":"h 72-96 h ","textAfter":" h 120-144","comments":null,"startOffset":43,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618256Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786833Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"556e00bc1a1802f8f7f556685446e518","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.58,"y":572.39},"width":31.050995,"height":10.0905,"page":31}],"sectionNumber":301,"textBefore":"h 96-120 h ","textAfter":" h 144-168","comments":null,"startOffset":52,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618257Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786833Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"90c442ed18aeeb955a119d5144b81425","type":"PII","value":"99 99 103 102","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.01,"y":369.81},"width":10.059998,"height":10.0905,"page":31},{"topLeft":{"x":311.21,"y":369.81},"width":10.059998,"height":10.0905,"page":31},{"topLeft":{"x":394.87,"y":369.81},"width":14.619995,"height":10.0905,"page":31},{"topLeft":{"x":474.1,"y":369.81},"width":14.619995,"height":10.0905,"page":31}],"sectionNumber":308,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":97,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618257Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786833Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"02a04c4111e62045d11d0e917b0c4021","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.58,"y":560.39},"width":31.050995,"height":10.0905,"page":31}],"sectionNumber":301,"textBefore":"h 120-144 h ","textAfter":" h Subtotal","comments":null,"startOffset":62,"endOffset":69,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618257Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786833Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"55f1955a8bf88dd82344443bf77141c3","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.02,"y":596.42},"width":22.054,"height":10.0905,"page":32}],"sectionNumber":315,"textBefore":"h 48-72 h ","textAfter":" h 96-120","comments":null,"startOffset":35,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618257Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786833Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d97a2a951dcde0c623bd17783ed3b236","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.02,"y":501.83},"width":22.054,"height":10.0905,"page":32}],"sectionNumber":319,"textBefore":"h 48-72 h ","textAfter":" h 96-120","comments":null,"startOffset":32,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618257Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786834Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"088fb9b3322979975cc84e5012813d1f","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.02,"y":524.15},"width":22.054,"height":10.0905,"page":32}],"sectionNumber":320,"textBefore":"0-24 h ","textAfter":" h 48-72","comments":null,"startOffset":25,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618258Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786834Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bb98b5782d7defb0311211edfcb5bd69","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.02,"y":512.99},"width":22.054,"height":10.0905,"page":32}],"sectionNumber":316,"textBefore":"h 24-48 h ","textAfter":" h 72-96","comments":null,"startOffset":21,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618258Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786834Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31b818878ec654aea70218a4f774d26a","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.58,"y":479.51},"width":31.050995,"height":10.0905,"page":32}],"sectionNumber":321,"textBefore":"h 96-120 h ","textAfter":" h 144-168","comments":null,"startOffset":48,"endOffset":55,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618258Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786834Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d74b58e536b943b2559e1afc5429a588","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.02,"y":620.42},"width":22.054,"height":10.0905,"page":32}],"sectionNumber":315,"textBefore":"h 8-24 h ","textAfter":" h 48-72","comments":null,"startOffset":19,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618258Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786834Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eabf0deaa59afed111baa1a1f816e479","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.74,"y":490.67},"width":26.490997,"height":10.0905,"page":32}],"sectionNumber":316,"textBefore":"h 72-96 h ","textAfter":" h 120-144","comments":null,"startOffset":37,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618258Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786835Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3b0fd71982eae87c0f47bf108185c34e","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.58,"y":468.35},"width":31.050995,"height":10.0905,"page":32}],"sectionNumber":317,"textBefore":"h 120-144 h ","textAfter":" h Subtotal","comments":null,"startOffset":60,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618259Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786835Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"30348d3ee2a7c0ab2b83f801538176e5","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.58,"y":560.39},"width":31.050995,"height":10.0905,"page":32}],"sectionNumber":315,"textBefore":"h 120-144 h ","textAfter":" h Subtotal","comments":null,"startOffset":62,"endOffset":69,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618259Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786835Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed37bb2f184d2e80db0be82cb7898c87","type":"PII","value":"97 97 101 101","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.01,"y":369.81},"width":10.059998,"height":10.0905,"page":32},{"topLeft":{"x":311.21,"y":369.81},"width":10.059998,"height":10.0905,"page":32},{"topLeft":{"x":394.87,"y":369.81},"width":14.619995,"height":10.0905,"page":32},{"topLeft":{"x":477.7,"y":369.81},"width":14.619995,"height":10.0905,"page":32}],"sectionNumber":322,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":97,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618259Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786835Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0989f49a5e5231617636ae291dc28995","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.02,"y":608.42},"width":22.054,"height":10.0905,"page":32}],"sectionNumber":315,"textBefore":"h 24-48 h ","textAfter":" h 72-96","comments":null,"startOffset":27,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618259Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786835Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"90b360baad7bddbb893ab3ebf6e6fbcc","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.58,"y":572.39},"width":31.050995,"height":10.0905,"page":32}],"sectionNumber":315,"textBefore":"h 96-120 h ","textAfter":" h 144-168","comments":null,"startOffset":52,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618259Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786835Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"333b24278094051e46b50f81ccccfec2","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.74,"y":584.39},"width":26.490997,"height":10.0905,"page":32}],"sectionNumber":315,"textBefore":"h 72-96 h ","textAfter":" h 120-144","comments":null,"startOffset":43,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61826Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786836Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c3282e726ed6d351f867010b3d9c3d17","type":"PII","value":"(50-55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"dose of [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.83025,"y":78.400024},"width":30.299759,"height":11.017679,"page":34}],"sectionNumber":398,"textBefore":"100 mg/kg dose ","textAfter":"%) was around","comments":null,"startOffset":2240,"endOffset":2246,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61826Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786836Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fce578276763413b36cd91c7dd27155f","type":"PII","value":"(19-24","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"dose of [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":87.245285,"y":91.02399},"width":30.294708,"height":11.017679,"page":34}],"sectionNumber":398,"textBefore":"300 mg/kg dose ","textAfter":"%) was around","comments":null,"startOffset":2119,"endOffset":2125,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61826Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786836Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"69e1bf5d4050a5fb986cd39d0e688c18","type":"PII","value":"85-90","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"dose of [Pyrazole-5- 14 C]-SYN545974 to rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":218.46677,"y":116.34003},"width":26.783249,"height":11.017679,"page":34}],"sectionNumber":398,"textBefore":"absorbed dose was ","textAfter":"%. At the","comments":null,"startOffset":1943,"endOffset":1948,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61826Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786836Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"df034c1c743b401ebc877a1df3fb0247","type":"PII","value":"98 99 100 97","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":219.41,"y":355.53},"width":10.059998,"height":10.0905,"page":36},{"topLeft":{"x":305.93,"y":355.53},"width":10.059998,"height":10.0905,"page":36},{"topLeft":{"x":390.07,"y":355.53},"width":14.619995,"height":10.0905,"page":36},{"topLeft":{"x":478.66,"y":355.53},"width":10.059998,"height":10.0905,"page":36}],"sectionNumber":410,"textBefore":null,"textAfter":null,"comments":null,"startOffset":79,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61826Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786836Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7dd1b0ab8f9fe0496d87a0fe017e18e3","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.98,"y":605.66},"width":22.054,"height":10.0905,"page":36}],"sectionNumber":403,"textBefore":"h 24-48 h ","textAfter":" h Subtotal","comments":null,"startOffset":27,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618261Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786837Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3c834627f3d2ce71a46cd367f5bc634d","type":"PII","value":"12-24","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.98,"y":466.55},"width":22.054,"height":10.0905,"page":36}],"sectionNumber":405,"textBefore":"h 8-12 h ","textAfter":" h 24-48","comments":null,"startOffset":36,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618261Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786837Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"184adde6149532aa7f8ab075dd4cc5ca","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.98,"y":566.75},"width":22.054,"height":10.0905,"page":36}],"sectionNumber":404,"textBefore":"0-24 h ","textAfter":" h 48-72","comments":null,"startOffset":13,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618261Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786837Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de89e014d5b0134dc2ce10f683ca33f4","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.98,"y":441.83},"width":22.054,"height":10.0905,"page":36}],"sectionNumber":405,"textBefore":"h 24-48 h ","textAfter":" h Subtotal","comments":null,"startOffset":52,"endOffset":57,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618261Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786837Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fc849cd66bd8b00603ea792a59cc2cb9","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.98,"y":454.19},"width":22.054,"height":10.0905,"page":36}],"sectionNumber":410,"textBefore":"h 12-24 h ","textAfter":" h 48-72","comments":null,"startOffset":54,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618261Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786838Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"509edc4f8673550e449b3be99413f8d6","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.98,"y":618.5},"width":22.054,"height":10.0905,"page":36}],"sectionNumber":403,"textBefore":"h 8-24 h ","textAfter":" h 48-72","comments":null,"startOffset":19,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618262Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786838Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"740dbcff025a612274604e1a97af84be","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Phenyl-U- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.98,"y":553.79},"width":22.054,"height":10.0905,"page":36}],"sectionNumber":404,"textBefore":"h 24-48 h ","textAfter":" h Subtotal","comments":null,"startOffset":21,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618262Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786838Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"05e30afe5884bb17fca0c4d81a776107","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":125.78,"y":553.79},"width":22.054,"height":10.0905,"page":37}],"sectionNumber":418,"textBefore":"h 24-48 h ","textAfter":" h Subtotal","comments":null,"startOffset":21,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618262Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786838Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"408b0fdadb4dfdf3fb77b553cd56ed6c","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":125.78,"y":454.19},"width":22.054,"height":10.0905,"page":37}],"sectionNumber":419,"textBefore":"h 12-24 h ","textAfter":" h 48-72","comments":null,"startOffset":44,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618262Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786839Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8226923d288feaa23d6bab26d16b2dd4","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":125.78,"y":618.5},"width":22.054,"height":10.0905,"page":37}],"sectionNumber":417,"textBefore":"h 8-24 h ","textAfter":" h 48-72","comments":null,"startOffset":19,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618262Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786839Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4441e791a81d5705f7667b4691200f3a","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":125.78,"y":441.83},"width":22.054,"height":10.0905,"page":37}],"sectionNumber":423,"textBefore":"h 24-48 h ","textAfter":" h Subtotal","comments":null,"startOffset":55,"endOffset":60,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618262Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786839Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"17440f666711d419891f085c35ab1557","type":"PII","value":"12-24","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":125.78,"y":466.55},"width":22.054,"height":10.0905,"page":37}],"sectionNumber":423,"textBefore":"h 8-12 h ","textAfter":" h 24-48","comments":null,"startOffset":39,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618263Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786839Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a5c4e5490b8bd9b6799dbabde9390894","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":125.78,"y":605.66},"width":22.054,"height":10.0905,"page":37}],"sectionNumber":417,"textBefore":"h 24-48 h ","textAfter":" h Subtotal","comments":null,"startOffset":27,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618263Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78684Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9c118b63a3d818575032a2dc5ed88c3f","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":125.78,"y":566.75},"width":22.054,"height":10.0905,"page":37}],"sectionNumber":418,"textBefore":"0-24 h ","textAfter":" h 48-72","comments":null,"startOffset":13,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618263Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78684Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f2972be43b5dfd2c03245206ecc2f4b9","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"[Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.44978,"y":501.47},"width":82.552475,"height":11.017679,"page":38}],"sectionNumber":428,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2252,"endOffset":2269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618263Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"febf7ff1a92017061db5561e4fe6d723","type":"CBI_author","value":"Hutton E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.72772,"y":602.54},"width":41.49733,"height":10.526819,"page":38}],"sectionNumber":426,"textBefore":"Report: K-CA 5.1.1/03 ","textAfter":" (2015a). SYN545974-","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618263Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"42beea4abea76da6f745c08e78b4816d","type":"PII","value":"19-24","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"[Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.67537,"y":752.78},"width":26.774643,"height":11.017679,"page":38}],"sectionNumber":428,"textBefore":"oral dose to ","textAfter":"% at 300","comments":null,"startOffset":1648,"endOffset":1653,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618264Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786841Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"56a426aeacddd501ba467dff887f30fc","type":"CBI_address","value":"Charles River, Tranent, Edinburgh, EH33 2NE, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":481.3,"y":591.14},"width":31.597168,"height":10.526819,"page":38},{"topLeft":{"x":133.82,"y":579.59},"width":177.41153,"height":10.526819,"page":38}],"sectionNumber":426,"textBefore":"in the Rat. ","textAfter":". Charles River","comments":null,"startOffset":171,"endOffset":218,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618264Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f376d00910b82d121f69dd93769b5aea","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":148.88159,"y":450.95},"width":19.337448,"height":11.017679,"page":38}],"sectionNumber":429,"textBefore":"groups of 40 ","textAfter":" Wistar rats","comments":null,"startOffset":36,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618264Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b29038e91c975af78b173dce8dfde785","type":"PII","value":"50-55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"[Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":375.25308,"y":752.78},"width":26.736908,"height":11.017679,"page":38}],"sectionNumber":428,"textBefore":"in males and ","textAfter":"% at 100","comments":null,"startOffset":1681,"endOffset":1686,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618264Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786841Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f34d23e14d846da0da61490c90f3434a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":235.5813,"y":568.07},"width":38.160828,"height":10.526819,"page":38}],"sectionNumber":426,"textBefore":"June 2015. Unpublished. ","textAfter":" File No.SYN545974_10252","comments":null,"startOffset":290,"endOffset":298,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618264Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2f835609f425fffb749d92f92b9e63ad","type":"CBI_author","value":"Hutton E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"[Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.56943,"y":664.94},"width":41.09726,"height":11.017679,"page":38}],"sectionNumber":428,"textBefore":"14 C]-SYN545974. (","textAfter":", 2015) Guidelines:","comments":null,"startOffset":2059,"endOffset":2067,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618265Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc6c2f682b0335091681f811fbc62c5d","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974 to bile duct cannulated rats","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":318.6178,"y":579.59},"width":56.477295,"height":10.526819,"page":38}],"sectionNumber":426,"textBefore":"EH33 2NE, UK. ","textAfter":" Report No.","comments":null,"startOffset":220,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618265Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"52fbf57e977766b8b3da79248f64bd86","type":"hint_only","value":"purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":123.08699,"y":387.81},"width":27.981995,"height":10.018499,"page":40}],"sectionNumber":430,"textBefore":null,"textAfter":null,"comments":null,"startOffset":410,"endOffset":417,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618265Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"380881bb05cc689aa12ffc513cd81504","type":"CBI_address","value":"Syngenta Crop Protection","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.41,"y":372.45},"width":93.99704,"height":10.0905,"page":40}],"sectionNumber":430,"textBefore":null,"textAfter":" LLC","comments":null,"startOffset":246,"endOffset":270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618265Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c521be309dc010d490cd4de9ee7879b0","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":63.984,"y":427.79},"width":28.467995,"height":10.018499,"page":40}],"sectionNumber":430,"textBefore":null,"textAfter":null,"comments":null,"startOffset":142,"endOffset":149,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618265Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12f222198f50586bdd4ab401a674cec7","type":"CBI_address","value":"Syngenta Crop Protection Münchwilen AG","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.41,"y":466.67},"width":156.92502,"height":10.0905,"page":40}],"sectionNumber":430,"textBefore":null,"textAfter":null,"comments":null,"startOffset":38,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618265Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b8cc11d8d198e1613e79cbbc0597277f","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":213.0,"y":276.0},"width":150.0,"height":77.0,"page":40}],"sectionNumber":429,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618266Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"30475aadc6555f8131be0627ca5c9bdb","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":213.0,"y":123.0},"width":147.0,"height":68.0,"page":40}],"sectionNumber":429,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618266Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"38d65f03b4b1dc494762cebb46855ae2","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":213.0,"y":479.0},"width":151.0,"height":69.0,"page":40}],"sectionNumber":429,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618266Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"973ccd3f16942d255c62511e7f58dc5b","type":"PII","value":"10-11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":259.32504,"y":478.07},"width":22.218933,"height":10.0905,"page":41}],"sectionNumber":431,"textBefore":"58% Air changes: ","textAfter":" changes/hour Photoperiod:","comments":null,"startOffset":750,"endOffset":755,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618266Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786843Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"623c6fbe9393ae6454f4a8507ff07824","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.49,"y":651.62},"width":15.940002,"height":10.0905,"page":41}],"sectionNumber":431,"textBefore":null,"textAfter":" Wistar","comments":null,"startOffset":35,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618266Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de7a44319ece306c0dad8b91ad6fbf3a","type":"CBI_address","value":"Special Diet Services, Stepfield, Witham, Essex, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":353.91507,"y":537.59},"width":150.4902,"height":10.0905,"page":41},{"topLeft":{"x":211.49,"y":527.15},"width":39.412018,"height":10.0905,"page":41}],"sectionNumber":431,"textBefore":"No.1 maintenance diet, ","textAfter":". Ad libitum","comments":null,"startOffset":579,"endOffset":630,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618267Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f727d348af3b098688fc82bf3eca6324","type":"PII","value":"876-10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"administration of [Phenyl-U- 14 C]-SYN545974 to female rats at a dose of 5 mg/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":261.94226,"y":320.49},"width":32.26773,"height":11.017679,"page":43}],"sectionNumber":481,"textBefore":"point (range 0.","textAfter":".882 µg equiv/g),","comments":null,"startOffset":1523,"endOffset":1529,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618267Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786843Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eb5860e8545fa904b1272b1094c8dd40","type":"CBI_author","value":"Hutton E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.17944,"y":97.02399},"width":41.09726,"height":11.017679,"page":48}],"sectionNumber":645,"textBefore":"administered dose. (","textAfter":", 2015a) Guidelines:","comments":null,"startOffset":667,"endOffset":675,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618267Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d0067f66ae832f0b8391a938f66d8c4c","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"At the 5 mg/kg oral dose, absolute oral bioavailability (F) in blood ranged from 48-55%, for males\nand females irrespective of radiolabel position. However, after the 100 or 300 mg/kg oral dose,","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":455.40543,"y":726.38},"width":55.411255,"height":10.526819,"page":49}],"sectionNumber":647,"textBefore":"EH33 2NE, UK. ","textAfter":" Report No.","comments":null,"startOffset":449,"endOffset":462,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618267Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cb438757409b89ed75187d0376a67bc9","type":"PII","value":"48-55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"At the 5 mg/kg oral dose, absolute oral bioavailability (F) in blood ranged from 48-55%, for males\nand females irrespective of radiolabel position. However, after the 100 or 300 mg/kg oral dose,","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.44678,"y":58.47998},"width":26.933197,"height":10.929359,"page":49}],"sectionNumber":647,"textBefore":"blood ranged from ","textAfter":"%, for males","comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618268Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786844Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"27c3acbee496d90002990a9fdced6385","type":"PII","value":"25-24","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":106.44384,"y":352.05},"width":26.69616,"height":11.017679,"page":49}],"sectionNumber":646,"textBefore":"300 mg/kg: 0.","textAfter":" h) plasma","comments":null,"startOffset":1374,"endOffset":1379,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618268Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786844Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2beef3ae2153bf7995916a5a5f7c2210","type":"CBI_author","value":"Hutton E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"At the 5 mg/kg oral dose, absolute oral bioavailability (F) in blood ranged from 48-55%, for males\nand females irrespective of radiolabel position. However, after the 100 or 300 mg/kg oral dose,","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.34201,"y":749.3},"width":41.019257,"height":10.526819,"page":49}],"sectionNumber":647,"textBefore":"Report: K-CA 5.1.1/04 ","textAfter":" and OHagan","comments":null,"startOffset":217,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618268Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"17ec1db9d91a6ba485d6e9eb5e0878a4","type":"CBI_author","value":"OHagan P.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"At the 5 mg/kg oral dose, absolute oral bioavailability (F) in blood ranged from 48-55%, for males\nand females irrespective of radiolabel position. However, after the 100 or 300 mg/kg oral dose,","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.55215,"y":749.3},"width":46.06903,"height":10.526819,"page":49}],"sectionNumber":647,"textBefore":"Hutton E. and ","textAfter":" (2015). SYN545974","comments":null,"startOffset":231,"endOffset":240,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618268Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"54e2779252e7b8ab759048d0fb31e53a","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":141.93744,"y":463.43},"width":61.631683,"height":11.017679,"page":49}],"sectionNumber":646,"textBefore":"reported separately, under ","textAfter":" Study No.","comments":null,"startOffset":745,"endOffset":758,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618268Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"11f78d24c1e4f39e222e8645dfcb5050","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"CONCLUSION:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":255.46931,"y":637.82},"width":82.64076,"height":11.017679,"page":49}],"sectionNumber":645,"textBefore":null,"textAfter":null,"comments":null,"startOffset":861,"endOffset":878,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618269Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"23194d17c3bf7b0e4f2a7f0c60dfb60f","type":"PII","value":"25-30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":449.5415,"y":364.77},"width":26.638489,"height":11.017679,"page":49}],"sectionNumber":646,"textBefore":"100 mg/kg: 0.","textAfter":" h and","comments":null,"startOffset":1349,"endOffset":1354,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618269Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786844Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"58575b2e70fff50bae5dc98ed8e95eb7","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"At the 5 mg/kg oral dose, absolute oral bioavailability (F) in blood ranged from 48-55%, for males\nand females irrespective of radiolabel position. However, after the 100 or 300 mg/kg oral dose,","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":368.8825,"y":714.98},"width":38.160828,"height":10.526819,"page":49}],"sectionNumber":647,"textBefore":"June 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":519,"endOffset":527,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618269Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1cd5e74a89e73d0272ebabff6586e9bf","type":"PII","value":"25-12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.0149,"y":364.77},"width":26.89508,"height":11.017679,"page":49}],"sectionNumber":646,"textBefore":"(5 mg/kg: 0.","textAfter":" h, 100","comments":null,"startOffset":1327,"endOffset":1332,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618269Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786844Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b9eb738d9ee193542d9500a28766079a","type":"CBI_address","value":"Charles River, Tranent, Edinburgh, EH33 2NE, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"At the 5 mg/kg oral dose, absolute oral bioavailability (F) in blood ranged from 48-55%, for males\nand females irrespective of radiolabel position. However, after the 100 or 300 mg/kg oral dose,","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":242.67953,"y":726.38},"width":208.67621,"height":10.526819,"page":49}],"sectionNumber":647,"textBefore":"in the Rat. ","textAfter":". Charles River","comments":null,"startOffset":400,"endOffset":447,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618269Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a44459a8966c225ad3844c945edf6d7b","type":"PII","value":"26-34","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"bioavailability was decreased with F estimates of between 26-34%, for males and females,","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":363.47723,"y":752.54},"width":27.112732,"height":10.929359,"page":50}],"sectionNumber":650,"textBefore":"estimates of between ","textAfter":"%, for males","comments":null,"startOffset":58,"endOffset":63,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61827Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786845Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8ab9c529d1445ecdf553f502e5e382fd","type":"hint_only","value":"purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: bioavailability was decreased with F estimates of between 26-34%, for males and females,","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":70.824,"y":490.67},"width":28.467995,"height":10.018499,"page":50}],"sectionNumber":648,"textBefore":null,"textAfter":null,"comments":null,"startOffset":224,"endOffset":231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61827Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"491d462558c122a57372c222e51bb608","type":"hint_only","value":"purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: bioavailability was decreased with F estimates of between 26-34%, for males and females,","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":129.92699,"y":450.59},"width":27.981995,"height":10.018499,"page":50}],"sectionNumber":648,"textBefore":null,"textAfter":null,"comments":null,"startOffset":410,"endOffset":417,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61827Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d018816442194e9f42fe8be0694eb4ed","type":"CBI_address","value":"Syngenta Crop Protection","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: bioavailability was decreased with F estimates of between 26-34%, for males and females,","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":216.65,"y":435.47},"width":93.99704,"height":10.0905,"page":50}],"sectionNumber":648,"textBefore":null,"textAfter":" LLC","comments":null,"startOffset":246,"endOffset":270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61827Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"17778c9d1b2286509d3fc9fafe10d508","type":"CBI_address","value":"Syngenta Crop Protection Münchwilen AG","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: bioavailability was decreased with F estimates of between 26-34%, for males and females,","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":216.65,"y":529.67},"width":156.95203,"height":10.0905,"page":50}],"sectionNumber":648,"textBefore":null,"textAfter":null,"comments":null,"startOffset":38,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61827Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9eed35357d238ddaf9f6246bcca3a53d","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"bioavailability was decreased with F estimates of between 26-34%, for males and females,","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":217.0,"y":168.0},"width":262.0,"height":76.0,"page":50}],"sectionNumber":650,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61827Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4966824b114b2b72c80b6ca9e16de5d8","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"bioavailability was decreased with F estimates of between 26-34%, for males and females,","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":217.0,"y":344.0},"width":140.0,"height":73.0,"page":50}],"sectionNumber":650,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618271Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fdadae49d5609376ac616dd374c73ea9","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"bioavailability was decreased with F estimates of between 26-34%, for males and females,","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":217.0,"y":543.0},"width":150.0,"height":69.0,"page":50}],"sectionNumber":650,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618271Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b90e02935e28d3d108d16b98d025f085","type":"CBI_author","value":"Harlan (UK) Limited","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: bioavailability was decreased with F estimates of between 26-34%, for males and females,","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.85,"y":593.42},"width":85.76361,"height":10.526819,"page":51}],"sectionNumber":649,"textBefore":null,"textAfter":null,"comments":null,"startOffset":492,"endOffset":511,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618271Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7152a4a5de70207b70e28b2d6fc42bfc","type":"PII","value":"41-79","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: bioavailability was decreased with F estimates of between 26-34%, for males and females,","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":340.41827,"y":469.79},"width":24.431732,"height":10.526819,"page":51}],"sectionNumber":649,"textBefore":"20 °C Humidity: ","textAfter":"% Photoperiod: 12","comments":null,"startOffset":1067,"endOffset":1072,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618271Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786846Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"28046cf2f4ed7480219d9bd08dc289f6","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: bioavailability was decreased with F estimates of between 26-34%, for males and females,","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.85,"y":689.66},"width":17.593353,"height":10.526819,"page":51}],"sectionNumber":649,"textBefore":null,"textAfter":" Wistar","comments":null,"startOffset":35,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618271Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0173845490140587a8b8e800b06d3134","type":"CBI_address","value":"Special Diet Services, Stepfield, Witham, Essex, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: bioavailability was decreased with F estimates of between 26-34%, for males and females,","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":386.55054,"y":505.91},"width":136.84448,"height":10.526819,"page":51},{"topLeft":{"x":214.85,"y":494.39},"width":80.81952,"height":10.526819,"page":51}],"sectionNumber":649,"textBefore":"No.1 maintenance diet, ","textAfter":". .Ad libitum.","comments":null,"startOffset":918,"endOffset":969,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618272Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a704a3413c58522c0da6c3793e4e697a","type":"PII","value":"181-184","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37,"y":178.14001},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":665,"textBefore":"157-160 165-168 173-176 ","textAfter":" 189-192","comments":null,"startOffset":135,"endOffset":142,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618272Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786846Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"07ea87c3e61294c03e5f5c651b98783d","type":"PII","value":"141-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37,"y":80.08002},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":666,"textBefore":"117-120 125-128 133-136 ","textAfter":null,"comments":null,"startOffset":144,"endOffset":151,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618272Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786846Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5f04c390ffbce13359acd898bcf3e26f","type":"PII","value":"61-64","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":272.81,"y":300.93},"width":22.059998,"height":10.0905,"page":52}],"sectionNumber":664,"textBefore":"53-56 ","textAfter":" 69-72 77-80","comments":null,"startOffset":68,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618272Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786846Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3b48054dc4ffe7a732ba5be8d2b54aab","type":"PII","value":"33-36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":218.21,"y":342.69},"width":22.059998,"height":10.0905,"page":52}],"sectionNumber":663,"textBefore":"9-12 17-20 25-28 ","textAfter":" 41-44","comments":null,"startOffset":45,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618272Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786847Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"96d2552af01050893e14224d284a81d5","type":"PII","value":"153-156","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":224.22003},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":665,"textBefore":"145-148 ","textAfter":" 161-164 169-172","comments":null,"startOffset":63,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618273Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786847Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f1de93731ad1e13987fccfd06cec97e4","type":"PII","value":"113-116","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":124.26001},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":666,"textBefore":"97-100 105-108 ","textAfter":" 121-124 129-132","comments":null,"startOffset":72,"endOffset":79,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618273Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786847Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eb22d71790fd442fbf746c660e580edd","type":"PII","value":"49-52","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":218.21,"y":315.33002},"width":22.059998,"height":10.0905,"page":52}],"sectionNumber":664,"textBefore":null,"textAfter":" 57-60 65-68","comments":null,"startOffset":26,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618273Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786847Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d2dcdde867a8f729ec8a648694f7f34","type":"PII","value":"169-172","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":196.02002},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":665,"textBefore":"145-148 153-156 161-164 ","textAfter":" 177-180 185-188","comments":null,"startOffset":79,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618273Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786848Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"980e95ef20aa702b949439c18b8aedae","type":"PII","value":"193-196 197-200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":59.679993},"width":31.050995,"height":10.0905,"page":52},{"topLeft":{"x":268.37,"y":59.679993},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":667,"textBefore":null,"textAfter":null,"comments":null,"startOffset":31,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618273Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786848Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"21bebc3f0082c5fa4cf50787979c3579","type":"PII","value":"177-180","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":178.14001},"width":31.059998,"height":10.0905,"page":52}],"sectionNumber":665,"textBefore":"153-156 161-164 169-172 ","textAfter":" 185-188","comments":null,"startOffset":87,"endOffset":94,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618274Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786848Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8b8d11346d1417dba83bb4d0b6fb5d6","type":"PII","value":"45-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":272.81,"y":330.33},"width":22.059998,"height":10.0905,"page":52}],"sectionNumber":663,"textBefore":"21-24 29-32 37-40 ","textAfter":null,"comments":null,"startOffset":85,"endOffset":90,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618274Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786848Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ef0c1c4ef469763e33a752c689a495db","type":"PII","value":"137-140","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":80.08002},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":666,"textBefore":"113-116 121-124 129-132 ","textAfter":null,"comments":null,"startOffset":96,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618274Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786849Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a8c83c786b4a209f448aebf1ec3dbf85","type":"PII","value":"149-152","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37,"y":236.46002},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":665,"textBefore":null,"textAfter":" 157-160 165-168","comments":null,"startOffset":103,"endOffset":110,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618274Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786849Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"58e38c7972d2aba1f4d59feeb5f48db9","type":"PII","value":"109-112","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37,"y":136.5},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":666,"textBefore":"101-104 ","textAfter":" 117-120 125-128","comments":null,"startOffset":112,"endOffset":119,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618274Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786849Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"36ebdfb18a7a2d79742bcb5af1eed78d","type":"PII","value":"165-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37,"y":211.97998},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":665,"textBefore":"149-152 157-160 ","textAfter":" 173-176 181-184","comments":null,"startOffset":119,"endOffset":126,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618274Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78685Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4ad7c79a33ccf68897ea23c14fb5f741","type":"PII","value":"29-32","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":272.81,"y":355.05},"width":22.059998,"height":10.0905,"page":52}],"sectionNumber":663,"textBefore":"5-8 13-16 21-24 ","textAfter":" 37-40 45-48","comments":null,"startOffset":73,"endOffset":78,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618275Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78685Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e27c79f6a06b90951c8db540da732b49","type":"PII","value":"125-128","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37,"y":111.900024},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":666,"textBefore":"101-104 109-112 117-120 ","textAfter":" 133-136 141-144","comments":null,"startOffset":128,"endOffset":135,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618275Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78685Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5e21d4892c301af2377fff77b4314b72","type":"PII","value":"133-136","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37,"y":93.54401},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":666,"textBefore":"109-112 117-120 125-128 ","textAfter":" 141-144","comments":null,"startOffset":136,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618275Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78685Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7af296438a6e8b9c006205e84395e9f0","type":"PII","value":"189-192","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37,"y":163.85999},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":665,"textBefore":"165-168 173-176 181-184 ","textAfter":null,"comments":null,"startOffset":143,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618275Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786851Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cc5b04fad6443bb7370498fc9d9945c9","type":"PII","value":"80 85","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":284.81,"y":276.33002},"width":10.059998,"height":10.0905,"page":52},{"topLeft":{"x":272.81,"y":263.85004},"width":10.059998,"height":10.0905,"page":52}],"sectionNumber":664,"textBefore":"61-64 69-72 77-","textAfter":"-88 93-96","comments":null,"startOffset":83,"endOffset":88,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618275Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786851Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"77bf4b6b03dbbc572c590c473612e53e","type":"PII","value":"145-148","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":236.46002},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":665,"textBefore":null,"textAfter":" 153-156 161-164","comments":null,"startOffset":55,"endOffset":62,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618276Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786851Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"402f603e107dac387d3c103a9a32c42e","type":"PII","value":"57-60","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":218.21,"y":300.93},"width":22.059998,"height":10.0905,"page":52}],"sectionNumber":664,"textBefore":"49-52 ","textAfter":" 65-68 73-76","comments":null,"startOffset":32,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618276Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786851Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe31f1b7e3d979531d38c0dbec5232b5","type":"PII","value":"105-108","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":136.5},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":666,"textBefore":"97-100 ","textAfter":" 113-116 121-124","comments":null,"startOffset":64,"endOffset":71,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618276Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786852Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3c10d7be12efdbe32b9a2ee95d072e16","type":"PII","value":"25-28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":218.21,"y":355.05},"width":22.059998,"height":10.0905,"page":52}],"sectionNumber":663,"textBefore":"1-4 9-12 17-20 ","textAfter":" 33-36 41-44","comments":null,"startOffset":39,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618276Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786852Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fb8b36630aa9b7fbd9a49335dc102980","type":"PII","value":"97-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":216.05,"y":148.73999},"width":26.490997,"height":10.0905,"page":52}],"sectionNumber":666,"textBefore":null,"textAfter":" 105-108 113-116","comments":null,"startOffset":57,"endOffset":63,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618276Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786852Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"df245b30af0e9add3de38b760e44da6f","type":"PII","value":"161-164","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":211.97998},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":665,"textBefore":"145-148 153-156 ","textAfter":" 169-172 177-180","comments":null,"startOffset":71,"endOffset":78,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618277Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786853Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"30dd889354fd1248d51bb0d1f365de4a","type":"PII","value":"121-124","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":111.900024},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":666,"textBefore":"97-100 105-108 113-116 ","textAfter":" 129-132 137-140","comments":null,"startOffset":80,"endOffset":87,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618277Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786853Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e3d9f19165552fa1ab03c1907a6c8138","type":"PII","value":"129-132","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":93.54401},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":666,"textBefore":"105-108 113-116 121-124 ","textAfter":" 137-140","comments":null,"startOffset":88,"endOffset":95,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618277Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786853Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de7008aa59ca80b811aea31a2695a4b2","type":"PII","value":"185-188","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":163.85999},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":665,"textBefore":"161-164 169-172 177-180 ","textAfter":null,"comments":null,"startOffset":95,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618277Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786853Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"557ef3894f30fad430f7e408dcb7e7b3","type":"PII","value":"101-104","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37,"y":148.73999},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":666,"textBefore":null,"textAfter":" 109-112 117-120","comments":null,"startOffset":104,"endOffset":111,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618277Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786854Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9a759e5e3d1962f734b45bb14879baad","type":"PII","value":"37-40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":272.81,"y":342.69},"width":22.059998,"height":10.0905,"page":52}],"sectionNumber":663,"textBefore":"13-16 21-24 29-32 ","textAfter":" 45-48","comments":null,"startOffset":79,"endOffset":84,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618278Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786854Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4061b0260ecd11874c6b4d6453c8b4e3","type":"PII","value":"157-160","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37,"y":224.22003},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":665,"textBefore":"149-152 ","textAfter":" 165-168 173-176","comments":null,"startOffset":111,"endOffset":118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618278Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786854Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"93f0c0532fe37068be0141e71c01baa8","type":"PII","value":"117-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37,"y":124.26001},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":666,"textBefore":"101-104 109-112 ","textAfter":" 125-128 133-136","comments":null,"startOffset":120,"endOffset":127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618278Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786854Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e65fd4e91a1d5a6f655ab5ab743354e6","type":"PII","value":"41-44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":218.21,"y":330.33},"width":22.059998,"height":10.0905,"page":52}],"sectionNumber":663,"textBefore":"17-20 25-28 33-36 ","textAfter":null,"comments":null,"startOffset":51,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618278Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786855Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7c6a3f230ca0bddc6a93ad5331f7912a","type":"PII","value":"173-176","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37,"y":196.02002},"width":31.050995,"height":10.0905,"page":52}],"sectionNumber":665,"textBefore":"149-152 157-160 165-168 ","textAfter":" 181-184 189-192","comments":null,"startOffset":127,"endOffset":134,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618278Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786855Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bdfbb7d8397cc1ef0b35d730bb2228d1","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Pharmacokinetic studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":63.984,"y":675.14},"width":61.874573,"height":11.017679,"page":53}],"sectionNumber":671,"textBefore":"in the Rat. ","textAfter":" Report No.","comments":null,"startOffset":427,"endOffset":440,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618279Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1444322d8b95176d537d099eb31688e0","type":"PII","value":"201-204 205-208","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-25: Blood collection times for pharmacokinetic studies for [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":747.14},"width":31.050995,"height":10.0905,"page":53},{"topLeft":{"x":268.37,"y":747.14},"width":31.050995,"height":10.0905,"page":53}],"sectionNumber":669,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618279Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786855Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0f742b4422ccae1713b291ae8904e2ee","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Pharmacokinetic studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":218.73169,"y":675.14},"width":41.881134,"height":11.017679,"page":53}],"sectionNumber":671,"textBefore":"No. 34216. (","textAfter":" File no.","comments":null,"startOffset":460,"endOffset":468,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618279Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4afa1a3d6a1bb4c1ca474beed5d24cb0","type":"CBI_author","value":"MacDonald, M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Pharmacokinetic studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.24738,"y":687.74},"width":70.298096,"height":11.017679,"page":53}],"sectionNumber":671,"textBefore":"separate study (","textAfter":" 2015) SYN545974","comments":null,"startOffset":366,"endOffset":378,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618279Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"42fb6c3517f6d66828cecd8d025b0c7a","type":"PII","value":"16 218 89","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-31: A comparison of pharmacokinetic parameters in blood following oral\nadministration of [Phenyl-U-14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":303.512,"y":350.85},"width":9.937012,"height":10.0905,"page":55},{"topLeft":{"x":395.71,"y":350.85},"width":14.619995,"height":10.0905,"page":55},{"topLeft":{"x":480.22,"y":350.85},"width":10.053986,"height":10.0905,"page":55}],"sectionNumber":767,"textBefore":null,"textAfter":null,"comments":null,"startOffset":31,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618279Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786856Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cac08d6745368a7e0f348c7d3170b3aa","type":"PII","value":"77 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: administration of [Phenyl-U-14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.472,"y":579.59},"width":9.936996,"height":10.0905,"page":56},{"topLeft":{"x":294.41,"y":579.59},"width":10.053986,"height":10.0905,"page":56}],"sectionNumber":785,"textBefore":null,"textAfter":null,"comments":null,"startOffset":29,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61828Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786856Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d448d5a9be282fa67382a0d558691972","type":"PII","value":"86 167 54","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-33: A comparison of pharmacokinetic parameters in blood following oral\nadministration of [Pyrazole-5-14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":303.512,"y":341.61},"width":9.937012,"height":10.0905,"page":56},{"topLeft":{"x":395.59,"y":341.61},"width":14.619995,"height":10.0905,"page":56},{"topLeft":{"x":480.22,"y":341.61},"width":10.053986,"height":10.0905,"page":56}],"sectionNumber":797,"textBefore":null,"textAfter":null,"comments":null,"startOffset":31,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61828Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786856Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8f6303356469099e15116786a9da615d","type":"PII","value":"89 316 113","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: administration of [Phenyl-U-14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":303.512,"y":616.34},"width":9.937012,"height":10.0905,"page":56},{"topLeft":{"x":395.59,"y":616.34},"width":14.619995,"height":10.0905,"page":56},{"topLeft":{"x":481.18,"y":616.34},"width":14.619995,"height":10.0905,"page":56}],"sectionNumber":783,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61828Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786856Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f34b1c95d0eeed1bd981f10469de372f","type":"PII","value":"475 447","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-35: A comparison of pharmacokinetic parameters in blood following intravenous\nadministration of [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":385.51,"y":276.57},"width":14.619995,"height":10.0905,"page":57},{"topLeft":{"x":474.94,"y":276.57},"width":14.619995,"height":10.0905,"page":57}],"sectionNumber":831,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61828Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786857Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9349b1e315b59e15775b63658f33068d","type":"PII","value":"17300 13400","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-35: A comparison of pharmacokinetic parameters in blood following intravenous\nadministration of [14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":381.07,"y":264.21002},"width":23.598969,"height":10.0905,"page":57},{"topLeft":{"x":470.38,"y":264.21002},"width":23.598969,"height":10.0905,"page":57}],"sectionNumber":832,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618281Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786857Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a303691088935d71b4fdb79812909f1a","type":"PII","value":"48-55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":422.68463,"y":131.58002},"width":26.975342,"height":11.017679,"page":57}],"sectionNumber":835,"textBefore":"blood ranged from ","textAfter":"%, for males","comments":null,"startOffset":481,"endOffset":486,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618281Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786857Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"43e57548c3859d85bebd7427daf3c8b4","type":"CBI_author","value":"Hutton E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.69943,"y":48.27997},"width":41.09726,"height":11.017679,"page":57}],"sectionNumber":835,"textBefore":"higher dose. (","textAfter":" and OHagan","comments":null,"startOffset":812,"endOffset":820,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618281Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6f45e36b41a66b5e3a438922f9e57e4d","type":"PII","value":"37 195 55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: administration of [Pyrazole-5-14C]-SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.912,"y":616.34},"width":9.937012,"height":10.0905,"page":57},{"topLeft":{"x":392.59,"y":616.34},"width":14.619995,"height":10.0905,"page":57},{"topLeft":{"x":477.7,"y":616.34},"width":10.053986,"height":10.0905,"page":57}],"sectionNumber":813,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618281Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786857Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2c1a72ce02b96b5c1a56ef77ddd2c258","type":"CBI_author","value":"OHagan P","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":448.12598,"y":48.27997},"width":46.473755,"height":11.017679,"page":57}],"sectionNumber":835,"textBefore":"(Hutton E and ","textAfter":", 2015) Guidelines:","comments":null,"startOffset":825,"endOffset":833,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618281Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9055d36eae9f6caee590243228a2350d","type":"PII","value":"26-34","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":322.43048,"y":106.26001},"width":26.759491,"height":11.017679,"page":57}],"sectionNumber":835,"textBefore":"estimates of between ","textAfter":"%, for males","comments":null,"startOffset":653,"endOffset":658,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618281Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786858Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d3d1aee67844f47da935d9efa2bda5f","type":"CBI_author","value":"Hutton, E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":236.63857,"y":528.11},"width":45.402878,"height":11.017679,"page":58}],"sectionNumber":837,"textBefore":"previous studies (","textAfter":", (2015) (Syngenta","comments":null,"startOffset":160,"endOffset":169,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618282Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f6c28735fdb8b90f08346966c60cd9b3","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"CONCLUSION:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":255.48465,"y":591.74},"width":82.64078,"height":11.017679,"page":58}],"sectionNumber":835,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1025,"endOffset":1042,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618282Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d76f7e762da87f0f10605da4ba62ba1a","type":"CBI_author","value":"Jewkes Y.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":276.20963,"y":699.38},"width":41.985474,"height":10.526819,"page":58}],"sectionNumber":837,"textBefore":"MacDonald M. and ","textAfter":" (2015). SYN545974","comments":null,"startOffset":3217,"endOffset":3226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618282Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1fe826142d2482c30f396cbd46debec7","type":"CBI_author","value":"Hutton, E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":63.984,"y":515.39},"width":48.151833,"height":11.017679,"page":58}],"sectionNumber":837,"textBefore":"No. SYN545974_10248) and ","textAfter":" and OHagan","comments":null,"startOffset":218,"endOffset":228,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618282Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"248738cd33811e24bb01fdeba0476d80","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":223.93153,"y":515.39},"width":41.88115,"height":11.017679,"page":58}],"sectionNumber":837,"textBefore":"P (2015) (","textAfter":" File No.","comments":null,"startOffset":250,"endOffset":258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618282Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"63255f5282c8fc06f6b32cb52d45f965","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":325.35602,"y":528.11},"width":41.881104,"height":11.017679,"page":58}],"sectionNumber":837,"textBefore":"E, (2015) (","textAfter":" File No.","comments":null,"startOffset":179,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618283Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43331887961018d87ca78e6462e22dac","type":"CBI_author","value":"OHagan P","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.4459,"y":515.39},"width":47.920013,"height":11.017679,"page":58}],"sectionNumber":837,"textBefore":"Hutton, E. and ","textAfter":" (2015) (Syngenta","comments":null,"startOffset":233,"endOffset":241,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618283Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8ec9ed478f4b46b5e9ebb7cb982eae0","type":"CBI_address","value":"Charles River, Tranent, Edinburgh, EH32 2NE, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":239.06888,"y":687.14},"width":209.86224,"height":10.526819,"page":58}],"sectionNumber":837,"textBefore":"C]-SYN545974 in Rat, ","textAfter":". Report No.","comments":null,"startOffset":3294,"endOffset":3341,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618283Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a6c5913ac575919f5a3e8a645b280d68","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":317.9953,"y":675.74},"width":38.05127,"height":10.526819,"page":58}],"sectionNumber":837,"textBefore":"July 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":3399,"endOffset":3407,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618283Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d08635bd03a598141e747094cccbc3bf","type":"CBI_author","value":"MacDonald M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":195.88219,"y":699.38},"width":59.37555,"height":10.526819,"page":58}],"sectionNumber":837,"textBefore":"Report: K-CA 5.1.1/05 ","textAfter":". and Jewkes","comments":null,"startOffset":3200,"endOffset":3211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618283Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7bdd6ede78e3a4db11b9a94cae814b3f","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":61.0},"width":352.0,"height":148.0,"page":59}],"sectionNumber":837,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618284Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0ca2d5b1037a914dec1e8792694e2b98","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":222.53,"y":472.07},"width":15.940002,"height":10.0905,"page":60}],"sectionNumber":836,"textBefore":null,"textAfter":" Wistar","comments":null,"startOffset":35,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618284Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c53b12549a8b0eb0bfb858a9cd22768","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":267.28906,"y":416.97},"width":41.41742,"height":11.0232,"page":60}],"sectionNumber":837,"textBefore":"E, (2015b) (","textAfter":" File No.","comments":null,"startOffset":6614,"endOffset":6622,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618284Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c12b7bfedec56d2e2a4efcda6fc0dc9","type":"CBI_address","value":"Charles River (UK) Limited","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":222.53,"y":459.23},"width":102.52008,"height":10.0905,"page":60}],"sectionNumber":836,"textBefore":null,"textAfter":null,"comments":null,"startOffset":54,"endOffset":80,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618284Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f1ece917b9f5bbb9702556289490cb7a","type":"CBI_author","value":"Hutton, E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":177.74,"y":416.97},"width":43.846237,"height":11.017679,"page":60}],"sectionNumber":837,"textBefore":"No. SYN545974_10248) and ","textAfter":", (2015b) (Syngenta","comments":null,"startOffset":6594,"endOffset":6603,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618284Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a3b4b5da3ce4ff0c381be832b208e859","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":444.93906,"y":429.59},"width":41.318024,"height":11.0232,"page":60}],"sectionNumber":837,"textBefore":"E, (2015a) (","textAfter":" File No.","comments":null,"startOffset":6555,"endOffset":6563,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618285Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bbd28b0ea10035dc9b47b050e7ba0cf5","type":"CBI_author","value":"Hutton, E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":354.52368,"y":429.59},"width":44.199524,"height":11.017679,"page":60}],"sectionNumber":837,"textBefore":"separate studies [","textAfter":", (2015a) (Syngenta","comments":null,"startOffset":6535,"endOffset":6544,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618285Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40fb49d136b1e8d2d22ebe0f07dd22b0","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":604.0},"width":356.0,"height":161.0,"page":60}],"sectionNumber":837,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618285Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"64c595914fca27a3447e170fc4fff57e","type":"CBI_author","value":"Hutton, E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Origin of samples for metabolite characterisation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":309.65,"y":636.02},"width":53.197113,"height":11.017679,"page":61}],"sectionNumber":853,"textBefore":"No. SYN545974_10248) and ","textAfter":", (2015b) (Syngenta","comments":null,"startOffset":891,"endOffset":900,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618285Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3b865b65a0314d21de749f69641476f0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Origin of samples for metabolite characterisation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":67.583046,"y":636.02},"width":41.53887,"height":11.0232,"page":61}],"sectionNumber":853,"textBefore":"E, (2015a) (","textAfter":" File No.","comments":null,"startOffset":852,"endOffset":860,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618285Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"060b5bc9e662e60306baa18cecf64725","type":"CBI_author","value":"Hutton, E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Origin of samples for metabolite characterisation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.0285,"y":648.74},"width":44.8067,"height":11.017679,"page":61}],"sectionNumber":853,"textBefore":"separate studies [","textAfter":", (2015a) (Syngenta","comments":null,"startOffset":832,"endOffset":841,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618286Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3f4b6b499b08dcb172825f43700226b8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Origin of samples for metabolite characterisation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":427.02905,"y":636.02},"width":41.53885,"height":11.0232,"page":61}],"sectionNumber":853,"textBefore":"E, (2015b) (","textAfter":" File No.","comments":null,"startOffset":911,"endOffset":919,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618286Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fe870fc17692ee356b02a75436fa0128","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":85.0},"width":463.0,"height":651.0,"page":62}],"sectionNumber":887,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618286Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0585717053a0ba100267a6f9f9352606","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":64.0,"y":137.0},"width":470.0,"height":598.0,"page":63}],"sectionNumber":887,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618286Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"824b180bba64516703d8ef906a29347f","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":64.0,"y":186.0},"width":470.0,"height":550.0,"page":64}],"sectionNumber":887,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618286Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2c2bbbaaeab73247cd3f38e4e87428ca","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":64.0,"y":161.0},"width":470.0,"height":575.0,"page":65}],"sectionNumber":887,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618287Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1c548b780ccdd02496e9c1e9f952236f","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":64.0,"y":242.0},"width":470.0,"height":484.0,"page":66}],"sectionNumber":887,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618287Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4ac0d112ebb18cd25e3da98540b936ff","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":64.0,"y":231.0},"width":470.0,"height":505.0,"page":67}],"sectionNumber":887,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618287Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d81b21b70e337a62a329fa36b47fe496","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":90.0},"width":470.0,"height":636.0,"page":68}],"sectionNumber":887,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618287Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2bbfae72ad8ca1437046b26de35edd7d","type":"CBI_author","value":"Gains","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: or 100 mg [Phenyl-U 14 C]-SYN545974/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":105.486,"y":576.71},"width":21.897995,"height":10.0905,"page":70}],"sectionNumber":899,"textBefore":"Losses/","textAfter":null,"comments":null,"startOffset":7,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618287Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"efce87ad5f740a1862a51a5d306b4fd0","type":"CBI_author","value":"Gains","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: U 14 C] - SYN545974/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":91.206,"y":380.85},"width":21.897995,"height":10.0905,"page":71}],"sectionNumber":933,"textBefore":"Losses/","textAfter":null,"comments":null,"startOffset":7,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618287Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bcbbd67038d542be9a6c129bb88456d0","type":"CBI_author","value":"Gains","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: U 14 C] - SYN545974/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":105.462006,"y":233.97},"width":21.897995,"height":10.0905,"page":74}],"sectionNumber":999,"textBefore":"Losses/","textAfter":null,"comments":null,"startOffset":7,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618288Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3ba6d1b4e104b004d30cea448ac457a9","type":"CBI_author","value":"Gains","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: dose of 5 mg [Phenyl-U14C]-SYN545974/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.406006,"y":369.69},"width":21.897995,"height":10.0905,"page":76}],"sectionNumber":1051,"textBefore":"Losses/","textAfter":null,"comments":null,"startOffset":7,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618288Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0a9987be4ec6bcf01b3eff67dcc3b2d9","type":"CBI_author","value":"Gains","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: mg [Pyrazole-5- 14 C]-SYN545974/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.406006,"y":590.42},"width":21.897995,"height":10.0905,"page":78}],"sectionNumber":1101,"textBefore":"Losses/","textAfter":null,"comments":null,"startOffset":7,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618288Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"62033cad0e855953fe912465e4d89cfc","type":"CBI_author","value":"Gains","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: [Pyrazole-5- 14 C]-SYN545974/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.406006,"y":359.97},"width":21.897995,"height":10.0905,"page":79}],"sectionNumber":1137,"textBefore":"Losses/","textAfter":null,"comments":null,"startOffset":7,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618288Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0dd930c7be50b21160252b46f307118a","type":"CBI_author","value":"Gains","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: dose of 100 or 300 mg [Pyrazole-5- 14 C]-SYN545974/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.406006,"y":354.45},"width":21.897995,"height":10.0905,"page":81}],"sectionNumber":1193,"textBefore":"Losses/","textAfter":null,"comments":null,"startOffset":7,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618288Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f7f9c40ffe0c63d9ef073f0e2d739568","type":"CBI_author","value":"Gains","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: dose of 5 mg [Pyrazole-5- 14 C]-SYN545974/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.406006,"y":487.31},"width":21.897995,"height":10.0905,"page":83}],"sectionNumber":1241,"textBefore":"Losses/","textAfter":null,"comments":null,"startOffset":7,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618289Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bc58550b490148617bdc2a6dcafd5880","type":"PII","value":"75 113","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: dose of 5 mg [Pyrazole-5- 14 C]-SYN545974/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":350.692,"y":373.41},"width":9.937012,"height":10.0905,"page":84},{"topLeft":{"x":414.91,"y":373.41},"width":14.619995,"height":10.0905,"page":84}],"sectionNumber":1269,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618289Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786862Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"608a766e3de1e3c003ea2e4921d416df","type":"PII","value":"19 97","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: dose of 5 mg [Pyrazole-5- 14 C]-SYN545974/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":350.692,"y":402.81},"width":9.937012,"height":10.0905,"page":84},{"topLeft":{"x":417.19,"y":402.81},"width":10.059998,"height":10.0905,"page":84}],"sectionNumber":1267,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618289Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786862Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ab4244e701ad28e31d7d44cddbdcf2a6","type":"CBI_author","value":"Gains","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: dose of 5 mg [Pyrazole-5- 14 C]-SYN545974/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":91.206,"y":388.17},"width":21.897995,"height":10.0905,"page":84}],"sectionNumber":1268,"textBefore":"Losses/","textAfter":null,"comments":null,"startOffset":7,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618289Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"60d2f06a684e7040f796796b1d121e5e","type":"PII","value":"60 36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: dose of 5 mg [Pyrazole-5- 14 C]-SYN545974/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":350.692,"y":565.67},"width":9.937012,"height":10.0905,"page":84},{"topLeft":{"x":417.19,"y":565.67},"width":10.059998,"height":10.0905,"page":84}],"sectionNumber":1256,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61829Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786863Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7fe5a08951e476ff7c7f4d4c5b20e014","type":"PII","value":"55 73","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: dose of 5 mg [Pyrazole-5- 14 C]-SYN545974/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":350.692,"y":431.75},"width":9.937012,"height":10.0905,"page":84},{"topLeft":{"x":417.19,"y":431.75},"width":10.059998,"height":10.0905,"page":84}],"sectionNumber":1265,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61829Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786863Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b5fedc93812080638faf706db2a9b7ce","type":"CBI_author","value":"Gains","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 (expressed as percentage of total AUC)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.406006,"y":347.85},"width":21.897995,"height":10.0905,"page":85}],"sectionNumber":1296,"textBefore":"Losses/","textAfter":null,"comments":null,"startOffset":7,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61829Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5e187bb6d6f73f56edd71c2c3d28b0e8","type":"CBI_author","value":"Gains","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C] - SYN545974 (Expressed as µg Equivalents of SYN545974.h/g of Plasma)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.406006,"y":375.21},"width":21.897995,"height":10.0905,"page":86}],"sectionNumber":1322,"textBefore":"Losses/","textAfter":null,"comments":null,"startOffset":7,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61829Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"940fd19abf80bf40142acab946afe316","type":"PII","value":"43 55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C] - SYN545974 (Expressed as µg Equivalents of SYN545974.h/g of Plasma)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":367.852,"y":359.73},"width":9.937012,"height":10.0905,"page":86},{"topLeft":{"x":429.43,"y":359.73},"width":10.053986,"height":10.0905,"page":86}],"sectionNumber":1323,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61829Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786864Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1f113463eaafc759c919938c148d242b","type":"PII","value":"26 47","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C] - SYN545974 (Expressed as µg Equivalents of SYN545974.h/g of Plasma)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":367.852,"y":390.57},"width":9.937012,"height":10.0905,"page":86},{"topLeft":{"x":429.43,"y":390.57},"width":10.053986,"height":10.0905,"page":86}],"sectionNumber":1321,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618291Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786864Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3ff0d787a56a01942dad29c991c4bdf8","type":"CBI_author","value":"Gains","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C] - SYN545974 (expressed as percentage of total AUC)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.406006,"y":375.21},"width":21.897995,"height":10.0905,"page":87}],"sectionNumber":1348,"textBefore":"Losses/","textAfter":null,"comments":null,"startOffset":7,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618291Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cda272f314cb8d9144e1eda11adc4358","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"14 C] - SYN545974 (expressed as percentage of total AUC)","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":64.0,"y":428.0},"width":466.0,"height":311.0,"page":90}],"sectionNumber":1352,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618291Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f12cd10090a87d5e8da8c208c62a099e","type":"CBI_author","value":"Jewkes Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":452.45126,"y":752.9},"width":43.503998,"height":11.017679,"page":91}],"sectionNumber":1353,"textBefore":"(MacDonald M and ","textAfter":", 2015) Guidelines:","comments":null,"startOffset":1700,"endOffset":1708,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618291Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bdb7d31d8f86867bce85bd3a02de4fff","type":"CBI_author","value":"MacDonald M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":366.65945,"y":752.9},"width":65.52878,"height":11.017679,"page":91}],"sectionNumber":1353,"textBefore":"sulphate conjugation (","textAfter":" and Jewkes","comments":null,"startOffset":1684,"endOffset":1695,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618292Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fa7af353bec07ee5277e0ad3d737dd5a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":193.25,"y":656.54},"width":38.160767,"height":10.526819,"page":91}],"sectionNumber":1354,"textBefore":"June 2014. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":3451,"endOffset":3459,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618292Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"97a5a7afd85ba3e48f2ddd969e1f61bb","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":288.283,"y":668.06},"width":56.477295,"height":10.526819,"page":91}],"sectionNumber":1354,"textBefore":"EH33 2NE, UK. ","textAfter":" Report No.","comments":null,"startOffset":3381,"endOffset":3394,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618292Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c1f657abc95cf4d966963a487117404c","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"CONCLUSION:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":255.46931,"y":602.78},"width":82.64076,"height":11.017679,"page":91}],"sectionNumber":1353,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1773,"endOffset":1790,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618292Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80e7caf208bb8bc96ceaeee31770a524","type":"CBI_address","value":"Charles River, Tranent, Edinburgh, EH33 2NE, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.92505,"y":679.58},"width":61.39746,"height":10.526819,"page":91},{"topLeft":{"x":134.66,"y":668.06},"width":149.2247,"height":10.526819,"page":91}],"sectionNumber":1354,"textBefore":"Single Intravenous Administration. ","textAfter":". Charles River","comments":null,"startOffset":3332,"endOffset":3379,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618292Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f68db205530cd7b15c9dda3fdc68ac7","type":"PII","value":"(30-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":277.23877,"y":411.09},"width":35.92978,"height":10.929359,"page":92}],"sectionNumber":1354,"textBefore":"mg/kg) and females ","textAfter":" mg/kg). In","comments":null,"startOffset":5539,"endOffset":5546,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618293Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786865Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7836f705d4bb79414d29db131af8cc56","type":"PII","value":"256-308","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":309.69504,"y":481.79},"width":31.26596,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":"females (500 mg/kg) ","textAfter":" g for","comments":null,"startOffset":345,"endOffset":352,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618293Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786865Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2103680cc8e654e22383d783c8e8c78b","type":"CBI_address","value":"Syngenta Crop Protection","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":223.25,"y":680.18},"width":93.99704,"height":10.0905,"page":93}],"sectionNumber":1355,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618293Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10034a8991568348da4931282aa8cd38","type":"PII","value":"242-302","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":261.509,"y":502.55},"width":31.191986,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":"females (30 mg/kg) ","textAfter":" g for","comments":null,"startOffset":180,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618294Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786867Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eedac12fa83df2b6728d8d76c19bc5d4","type":"PII","value":"273-283","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.61,"y":471.47},"width":31.05098,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":"males; (1000 mg/kg) ","textAfter":" g for","comments":null,"startOffset":379,"endOffset":386,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618294Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786867Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5cbc2980d455732b5b798e35b7b89f04","type":"PII","value":"260-342","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.61,"y":523.19},"width":31.05098,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":null,"textAfter":" g for","comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618294Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786867Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"01e0ad73abdb5f9f8208559c10fedbf4","type":"PII","value":"176-200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":341.8671,"y":502.55},"width":31.253906,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":"g for males; ","textAfter":" g for","comments":null,"startOffset":201,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618294Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786867Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e6dc0e9991c145eb4f2c49c209c5b54e","type":"PII","value":"174-189","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":309.94705,"y":471.47},"width":31.253937,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":"g for males; ","textAfter":" g for","comments":null,"startOffset":400,"endOffset":407,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618294Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786868Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ee07302d0a0d0c27bbce141511d0271b","type":"PII","value":"183-221","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":310.55902,"y":523.19},"width":31.241974,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":"g for males; ","textAfter":" g for","comments":null,"startOffset":39,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618294Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786868Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"06c194c2f396ee4d44fb066c551f0504","type":"PII","value":"268-320","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":475.36908,"y":502.55},"width":31.224915,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":"females (100 mg/kg) ","textAfter":" g for","comments":null,"startOffset":235,"endOffset":242,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618295Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786868Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ba5d5ceff25d7d2de44b0e08a3db4978","type":"PII","value":"186-209","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.173,"y":512.87},"width":31.257996,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":"g for males; ","textAfter":" g for","comments":null,"startOffset":147,"endOffset":154,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618295Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786868Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de1325e1aad7d4681aad172bc0e4c3ba","type":"PII","value":"251-294","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.48508,"y":523.19},"width":31.305908,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":"females (3 mg/kg) ","textAfter":" g for","comments":null,"startOffset":71,"endOffset":78,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618295Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786868Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4fe5a23fdb55f71e75391c22b5f6a616","type":"CBI_address","value":"Charles River (UK) Limited","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Test Animals:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":232.61,"y":454.91},"width":102.520065,"height":10.0905,"page":93}],"sectionNumber":1362,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618295Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d8bab52b926e557f67e046c847252dfa","type":"PII","value":"177-198","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":259.241,"y":492.23},"width":31.059998,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":"g for males; ","textAfter":" g for","comments":null,"startOffset":256,"endOffset":263,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618295Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786869Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"40a8296c6526163b6175fd06d80e5cf3","type":"CBI_author","value":"Chow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.08514,"y":411.93},"width":22.599976,"height":10.0905,"page":93}],"sectionNumber":1365,"textBefore":"International Certified Rodent ","textAfter":" No. 5CR4","comments":null,"startOffset":51,"endOffset":55,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618296Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3251cdf39bb67659160e61b3edcca992","type":"PII","value":"10-11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.61,"y":336.69},"width":22.054,"height":10.0905,"page":93}],"sectionNumber":1371,"textBefore":null,"textAfter":" changes/","comments":null,"startOffset":13,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618296Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786869Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"03d1f08c739469b6e791ed87ecc65aec","type":"PII","value":"243-308","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":393.65594,"y":492.23},"width":31.305054,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":"females (300 mg/kg) ","textAfter":" g for","comments":null,"startOffset":290,"endOffset":297,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618296Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786869Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d38e09f372c1d3ee0144b76f044d98a0","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.61,"y":555.71},"width":15.940002,"height":10.0905,"page":93}],"sectionNumber":1358,"textBefore":null,"textAfter":" Wista","comments":null,"startOffset":8,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618296Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"63ec726f3609437c7208423697bc8f6b","type":"PII","value":"237-306","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":346.47806,"y":512.87},"width":31.322937,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":"females (10 mg/kg) ","textAfter":" g for","comments":null,"startOffset":126,"endOffset":133,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618296Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786869Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"85d8b43b621c35d3572037fcf590e7a7","type":"hint_only","value":"Purity (%w/w) :","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":69.864,"y":641.42},"width":63.585983,"height":10.018499,"page":93}],"sectionNumber":1355,"textBefore":null,"textAfter":null,"comments":null,"startOffset":111,"endOffset":126,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618297Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d40d9cdc9a020d9752cd2a76e7c0422","type":"PII","value":"183-221","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":475.09003,"y":492.23},"width":31.14096,"height":10.0905,"page":93}],"sectionNumber":1361,"textBefore":"g for males; ","textAfter":" g for","comments":null,"startOffset":311,"endOffset":318,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618297Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78687Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"306787cdfe83de6427999031a77e3f47","type":"PII","value":"49-52","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and blood sampling regime in the rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.03,"y":499.67},"width":22.059998,"height":10.0905,"page":94}],"sectionNumber":1391,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618297Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78687Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cd446eb25c9f46a9c96416b1bc94e9a6","type":"PII","value":"29-32","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and blood sampling regime in the rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.03,"y":581.63},"width":22.059998,"height":10.0905,"page":94}],"sectionNumber":1386,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618297Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78687Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d59ce7a400a7f5ad3c825764a57260af","type":"PII","value":"25-28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and blood sampling regime in the rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.03,"y":595.94},"width":22.059998,"height":10.0905,"page":94}],"sectionNumber":1385,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618297Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786871Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7682140856d850e8f80405e0dbedbf4f","type":"PII","value":"37-40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and blood sampling regime in the rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.03,"y":553.07},"width":22.059998,"height":10.0905,"page":94}],"sectionNumber":1388,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618298Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786871Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"038c4f8e5b62b0e00f134326ada87945","type":"PII","value":"61-64","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and blood sampling regime in the rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.03,"y":467.15},"width":22.059998,"height":10.0905,"page":94}],"sectionNumber":1393,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618298Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786871Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe41ee8a453abf8a5a5822cbb33c7130","type":"PII","value":"33-36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and blood sampling regime in the rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.03,"y":567.35},"width":22.059998,"height":10.0905,"page":94}],"sectionNumber":1387,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618298Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786871Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"195610688ab616767487e1498a2bdf0e","type":"PII","value":"57-60","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and blood sampling regime in the rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.03,"y":481.43},"width":22.059998,"height":10.0905,"page":94}],"sectionNumber":1392,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618298Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786871Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1721d1093b0230cf504ef89805933d1e","type":"PII","value":"45-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and blood sampling regime in the rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.03,"y":524.39},"width":22.059998,"height":10.0905,"page":94}],"sectionNumber":1390,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618298Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786871Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cac96ec3fa9bdf08c091df6531b62f37","type":"PII","value":"41-44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and blood sampling regime in the rat","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.03,"y":538.79},"width":22.059998,"height":10.0905,"page":94}],"sectionNumber":1389,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618298Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786871Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5817bf8449ef1d522750563fcdb2236e","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sample Collection and Bioanalysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":252.97778,"y":314.13},"width":19.337433,"height":11.017679,"page":94}],"sectionNumber":1396,"textBefore":"control rat (","textAfter":" Wistar) blood","comments":null,"startOffset":604,"endOffset":607,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618299Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c722e2d139ee2ef8bad6a7bbf6fccaf","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Dosing and blood sampling regime in the rat","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":453.0,"y":301.0},"width":80.0,"height":12.0,"page":94}],"sectionNumber":1395,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618299Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9ce4caf6d123afe9be1f3fd619ee96d0","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Dosing and blood sampling regime in the rat","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":135.0,"y":339.0},"width":137.0,"height":12.0,"page":94}],"sectionNumber":1395,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618299Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dcc9994bcb06e329e25e498c7862757a","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Males","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":583.0},"width":366.0,"height":182.0,"page":96}],"sectionNumber":1400,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618299Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c348ab98441a51972fe54c5d6f1ddf0e","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Males","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":296.0,"y":110.0},"width":249.0,"height":145.0,"page":96}],"sectionNumber":1400,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618299Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c745862b63e00f1b9758f50c2d8dea85","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Males","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":52.0,"y":107.0},"width":250.0,"height":148.0,"page":96}],"sectionNumber":1400,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6183Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3b0679ec02d4a81f6f424e507e36db0e","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Males","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":337.0},"width":327.0,"height":188.0,"page":96}],"sectionNumber":1400,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6183Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4566783839c2ecceb159624a8d6b4a0f","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Males Females","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":179.0},"width":302.0,"height":170.0,"page":97}],"sectionNumber":1402,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6183Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"57d808ce0c52682d3e7cbaa393356d02","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Males Females","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":380.0},"width":342.0,"height":171.0,"page":97}],"sectionNumber":1402,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6183Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b49a8bf3f6bd4101285f2a606c82832f","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Males Females","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":100.0},"width":340.0,"height":146.0,"page":98}],"sectionNumber":1405,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6183Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"190938eefb6d30f64c9a75e41e946c5b","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Males Females","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":55.0,"y":602.0},"width":244.0,"height":147.0,"page":98}],"sectionNumber":1405,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618301Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c18d3e96f1f97715381c118974609a63","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Males Females","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":296.0,"y":600.0},"width":256.0,"height":149.0,"page":98}],"sectionNumber":1405,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618301Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cdb24437b9b1a5bdb51fae3f7c0cfbb3","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"CONCLUSION:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.44978,"y":158.82},"width":82.552475,"height":11.017679,"page":99}],"sectionNumber":1409,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1517,"endOffset":1534,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618301Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"48fac408f8fa59e852c1b4834fab90ed","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":349.40762,"y":225.06},"width":56.467316,"height":10.526819,"page":99}],"sectionNumber":1410,"textBefore":"EH33 2NE, UK. ","textAfter":" Report No.","comments":null,"startOffset":222,"endOffset":235,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618301Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"68ba31b727c7afcf00dd0e765d77d28d","type":"CBI_author","value":"Harris J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":256.1844,"y":247.73999},"width":34.89392,"height":10.526819,"page":99}],"sectionNumber":1410,"textBefore":"Punler M. and ","textAfter":" (2014a). SYN545974","comments":null,"startOffset":36,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618301Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9400a9639add91d73d5b3145ef6701d9","type":"CBI_author","value":"Punler M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.85263,"y":247.73999},"width":40.869904,"height":10.526819,"page":99}],"sectionNumber":1410,"textBefore":"Report: K-CA 5.1.1/07 ","textAfter":" and Harris","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618302Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1e4afc360c87ecc24357ef24735ab117","type":"PII","value":"(30-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":119.62559,"y":487.31},"width":35.714424,"height":11.017679,"page":99}],"sectionNumber":1409,"textBefore":"mg/kg) and females ","textAfter":" mg/kg). In","comments":null,"startOffset":722,"endOffset":729,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618302Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786873Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d7cb85819ba4e8d2a198dcb1dcdb1d83","type":"CBI_author","value":"Harris J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":459.1598,"y":348.09},"width":35.400665,"height":11.017679,"page":99}],"sectionNumber":1409,"textBefore":"(Punler M and ","textAfter":", 2014) Guidelines:","comments":null,"startOffset":1444,"endOffset":1452,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618302Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b97016bfac2e2568c90967a58a2ec379","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":283.79556,"y":213.53998},"width":38.160828,"height":10.526819,"page":99}],"sectionNumber":1410,"textBefore":"August 2014. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":294,"endOffset":302,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618302Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"97db29c4558b4e1958dc161d7a585d44","type":"CBI_address","value":"Charles River, Tranent, Edinburgh, EH33 2NE, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":134.66,"y":225.06},"width":210.22983,"height":10.526819,"page":99}],"sectionNumber":1410,"textBefore":"Single Intravenous Administration. ","textAfter":". Charles River","comments":null,"startOffset":173,"endOffset":220,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618302Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5d3b741d31b5238eea296d1e4cc6531e","type":"CBI_author","value":"Punler M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.41943,"y":348.09},"width":42.245483,"height":11.017679,"page":99}],"sectionNumber":1409,"textBefore":"were observed. (","textAfter":" and Harris","comments":null,"startOffset":1431,"endOffset":1439,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618303Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d9bf0cd2feb2379a4b5e247559c845f","type":"PII","value":"36-44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.15607,"y":359.85},"width":22.227905,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"Group 4; males ","textAfter":" g, females","comments":null,"startOffset":299,"endOffset":304,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618303Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786874Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1b877b2439b2b7f52e17b6e9521fb1dd","type":"CBI_author","value":"Chow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.08514,"y":212.94},"width":22.599976,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"International Certified Rodent ","textAfter":" No. 5CR4","comments":null,"startOffset":1014,"endOffset":1018,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618303Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"85777df655ac8666e99a4b06c63b54c7","type":"hint_only","value":"Purity (%w/w) :","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":69.864,"y":539.87},"width":63.585983,"height":10.018499,"page":101}],"sectionNumber":1414,"textBefore":null,"textAfter":null,"comments":null,"startOffset":111,"endOffset":126,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618303Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"84cef83f7bfef83146c28f14b0f137d8","type":"PII","value":"29-36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.78403,"y":339.09},"width":22.139954,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"36-44 g, females ","textAfter":" g Group","comments":null,"startOffset":396,"endOffset":401,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618303Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786874Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"317713a19b1b9edb28d64e202f9018cd","type":"PII","value":"10-11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.61,"y":137.58002},"width":22.054,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":null,"textAfter":" changes/h","comments":null,"startOffset":1317,"endOffset":1322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618303Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786874Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de6b894e41df84d263585e18521267f5","type":"PII","value":"10-12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":267.12503,"y":412.05},"width":21.981995,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"weeks Group 2; ","textAfter":" weeks Group","comments":null,"startOffset":114,"endOffset":119,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618304Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786875Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b14fad7150ff8ce7f81442f618a4339a","type":"PII","value":"26-32","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.78403,"y":370.17},"width":22.139954,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"36-44 g, females ","textAfter":" g Group","comments":null,"startOffset":276,"endOffset":281,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618304Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786875Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b05c0f35b11451c131a0f393d7e803ac","type":"PII","value":"36-44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.15607,"y":370.17},"width":22.227905,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"Group 3; males ","textAfter":" g, females","comments":null,"startOffset":259,"endOffset":264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618304Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786875Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a64a9270edb9aebb9958cff80b2be3ca","type":"PII","value":"33-45","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.15607,"y":328.77},"width":22.227905,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"Group 7; males ","textAfter":" g, females","comments":null,"startOffset":419,"endOffset":424,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618304Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786875Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5794f9485dbab2080288f20531b3d705","type":"CBI_address","value":"Charles River (UK) Limited","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Test Animals:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":232.61,"y":297.33002},"width":102.520065,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":null,"textAfter":null,"comments":null,"startOffset":532,"endOffset":558,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618305Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2b27ab37bcdf4801e39d08f386cd63a2","type":"PII","value":"26-34","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.78403,"y":308.13},"width":22.139954,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"36-45 g, females ","textAfter":" g","comments":null,"startOffset":516,"endOffset":521,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618305Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786875Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31576554ad9a2e9001c290cd2addec04","type":"PII","value":"26-32","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.78403,"y":380.49},"width":22.139954,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"36-46 g, females ","textAfter":" g Group","comments":null,"startOffset":236,"endOffset":241,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618305Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786876Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"18180c908f931bc3d87a19c8185eb113","type":"CBI_address","value":"Syngenta Crop Protection","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":223.25,"y":578.75},"width":93.99704,"height":10.0905,"page":101}],"sectionNumber":1414,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618305Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0d83dc130289fe06394f9c9665c40260","type":"PII","value":"24-34","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.78403,"y":390.93},"width":22.139954,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"36-42 g, females ","textAfter":" g Group","comments":null,"startOffset":196,"endOffset":201,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618306Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786877Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db45c3c380d01ea6064b0d1e5f549f22","type":"PII","value":"26-34","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.78403,"y":318.45},"width":22.139954,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"37-43 g, females ","textAfter":" g Group","comments":null,"startOffset":476,"endOffset":481,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618306Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786877Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0f1a3321cdbfacceb8a910b713836aa4","type":"PII","value":"36-45","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.15607,"y":308.13},"width":22.227905,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"Group 9; males ","textAfter":" g, females","comments":null,"startOffset":499,"endOffset":504,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618306Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786877Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"acc9f438dda3105d687e3b2a674f8aa3","type":"PII","value":"36-46","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.15607,"y":380.49},"width":22.227905,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"Group 2; males ","textAfter":" g, females","comments":null,"startOffset":219,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618306Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786877Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"280508e56af9cfdde88846cbbc33b3f7","type":"PII","value":"22-31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.78403,"y":349.53},"width":22.139954,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"35-45 g, females ","textAfter":" g Group","comments":null,"startOffset":356,"endOffset":361,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618307Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786878Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4b4ec774f4476caef1e9e2bf35812356","type":"PII","value":"36-44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.15607,"y":339.09},"width":22.227905,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"Group 6; males ","textAfter":" g, females","comments":null,"startOffset":379,"endOffset":384,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618307Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786878Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f5a23c5c1c7f5eed51d3a821fe9aad2a","type":"PII","value":"26-33","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.85504,"y":328.77},"width":22.06894,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"33-45 g, females ","textAfter":" g Group","comments":null,"startOffset":436,"endOffset":441,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618307Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786878Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"66d41f78172ce9950e1ddc3abf7bccd7","type":"PII","value":"37-43","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.15607,"y":318.45},"width":22.227905,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"Group 8; males ","textAfter":" g, females","comments":null,"startOffset":459,"endOffset":464,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618307Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786878Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6ad42c42c86e17e5a6460cba48087162","type":"PII","value":"36-42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.19205,"y":390.93},"width":22.191925,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"Group 1; males ","textAfter":" g, females","comments":null,"startOffset":179,"endOffset":184,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618308Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786878Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"002c112ae05e6cdb5e3840acf9c3f0ba","type":"PII","value":"28-32","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.78403,"y":359.85},"width":22.139954,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"36-44 g, females ","textAfter":" g Group","comments":null,"startOffset":316,"endOffset":321,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618308Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786878Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4b5fa50c25715bdc403e0b167da77d1b","type":"PII","value":"33-87","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.61,"y":148.38},"width":22.059998,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":null,"textAfter":"%","comments":null,"startOffset":1297,"endOffset":1302,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618308Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786878Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4832563989f76d696f7a938a158cac62","type":"PII","value":"35-45","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.15607,"y":349.53},"width":22.227905,"height":10.0905,"page":101}],"sectionNumber":1416,"textBefore":"Group 5: males ","textAfter":" g, females","comments":null,"startOffset":339,"endOffset":344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618316Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786879Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"383f70b4cdbde5d4c6eb1b9ff8573250","type":"PII","value":"189-192","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":277.64996},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1448,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618316Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786879Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bca23ff83e7f4247222daae8ad8f734e","type":"PII","value":"229-232","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":190.85999},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1456,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618316Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786879Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"baac271950c2ee4df74224aa80823f08","type":"PII","value":"193-196","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":255.93},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1450,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618317Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786879Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c8b0f0d427237a0768477ddf9688d6b4","type":"PII","value":"45-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":494.39},"width":22.059998,"height":10.0905,"page":102}],"sectionNumber":1428,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618317Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786879Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"612ae86de01ea478b83ec88835a5de7a","type":"PII","value":"133-136","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":342.69},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1442,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618317Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78688Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c9168bc9c63ece7add148314625c0183","type":"PII","value":"125-128","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":364.29},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1440,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618317Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78688Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7670feb5894050babef2c3fc34f37baa","type":"PII","value":"121-124","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":375.21},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1439,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618317Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78688Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dea68ad714ecb8239a9bfd8c172b9d6c","type":"PII","value":"33-36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":526.91},"width":22.059998,"height":10.0905,"page":102}],"sectionNumber":1425,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618318Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78688Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6c3314b8d6f77d63cf17dc89838527c8","type":"PII","value":"41-44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":505.31},"width":22.059998,"height":10.0905,"page":102}],"sectionNumber":1427,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618318Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78688Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f4195f2a4dd59489c092ca399f553426","type":"PII","value":"185-188","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":288.45},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1447,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618318Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78688Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1e9c81353ae513c11e0923103198f917","type":"PII","value":"225-228","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":201.65997},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1455,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618318Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786881Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5310dfd41c575444c50a323b796cc57f","type":"PII","value":"129-132","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":353.49},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1441,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618318Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786881Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f2ac81a805e80db7d37d7cce6e37fa54","type":"PII","value":"217-220 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":266.85004},"width":31.050995,"height":10.0905,"page":102},{"topLeft":{"x":473.5,"y":266.85004},"width":10.053986,"height":10.0905,"page":102}],"sectionNumber":1449,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618319Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786881Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ca33f68c4af3bd1f6be393fdc28eea32","type":"PII","value":"100 37-40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.25,"y":516.59},"width":14.619995,"height":10.0905,"page":102},{"topLeft":{"x":402.67,"y":516.11},"width":22.059998,"height":10.0905,"page":102}],"sectionNumber":1426,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618319Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786881Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9d3f6aacd3682d790343e38f13fb621c","type":"PII","value":"197-200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":245.10004},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1451,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618319Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786881Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"645520fb619a66e6f51282349de2bc43","type":"PII","value":"253-256","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":169.14001},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1458,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618319Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786881Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d7e7cb92986669fd70a5504253a1d61d","type":"PII","value":"161-164","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":310.16998},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1445,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618319Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786882Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cf224bf382d08dc5060aa0ca89f364ba","type":"PII","value":"249-252","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":179.94},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1457,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61832Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786882Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d49aa12e661384bbfebe68dbe3457db","type":"PII","value":"257-260","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":158.34003},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1459,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61832Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786882Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c2accae218fbe0c900a3642c1f2f6f6d","type":"PII","value":"153-156","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":331.77},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1443,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61832Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786882Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8d3aba1bab7f8414d64cb91b0cc6e1cd","type":"PII","value":"97-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":396.93},"width":26.490997,"height":10.0905,"page":102}],"sectionNumber":1437,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61832Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786882Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b6b92211a6a8481b2b38aabb2dd90f1f","type":"PII","value":"221-224 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":234.18},"width":31.050995,"height":10.0905,"page":102},{"topLeft":{"x":473.5,"y":234.18},"width":10.053986,"height":10.0905,"page":102}],"sectionNumber":1452,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61832Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786882Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"20eeef61bcfec9e2f05d1e154310453d","type":"PII","value":"101-104","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":386.01},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1438,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618321Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786883Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b58b57270e61126c44920b4f240e7b11","type":"PII","value":"157-160","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":320.97003},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1444,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618321Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786883Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"abfee001f646aff04bd322f1397e3d13","type":"PII","value":"261-264","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":147.53998},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1460,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618321Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786883Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f98ef199577f3da24d71e43e4926c1d9","type":"PII","value":"165-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 1 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":299.37},"width":31.050995,"height":10.0905,"page":102}],"sectionNumber":1446,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618321Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786883Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1e2e8ed72a11031160d71a7a9a48aa27","type":"PII","value":"500 173-176","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.81,"y":502.67},"width":14.619995,"height":10.0905,"page":103},{"topLeft":{"x":405.67,"y":502.19},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1482,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618321Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786883Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"64d3db140f027fccfaa61d09e5a10d2d","type":"PII","value":"61-64","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":610.58},"width":22.059998,"height":10.0905,"page":103}],"sectionNumber":1472,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618322Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786883Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3226fe199f0deca5c4bfd804117ed44e","type":"PII","value":"750 269-272","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.81,"y":372.57},"width":14.619995,"height":10.0905,"page":103},{"topLeft":{"x":405.67,"y":372.09},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1494,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618322Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786884Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db7dc60e728f86a855d50f4c9a94388d","type":"PII","value":"49-52","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":643.1},"width":22.059998,"height":10.0905,"page":103}],"sectionNumber":1469,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618322Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786884Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cee3e54a1c488b74ff8cf583f4128d88","type":"PII","value":"57-60","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":621.5},"width":22.059998,"height":10.0905,"page":103}],"sectionNumber":1471,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618322Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786884Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"13ff36fa2d9475b7c64144890881b0d4","type":"PII","value":"177-180","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":491.39},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1483,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618322Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786884Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"efa1337b353f8f95789478669cc54ca0","type":"PII","value":"113-116","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":578.03},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1475,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618323Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786884Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8b4454d46efd3d9faf0cc3e2975c5194","type":"PII","value":"169-172","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":512.99},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1481,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618323Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786884Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c65a664cd007b8eaef06a1f592acb209","type":"PII","value":"105-108","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":599.78},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1473,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618323Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786885Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fd6f82ed48ffc5c2166b0b0c8f037def","type":"PII","value":"117-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":567.23},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1476,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618323Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786885Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"744551d112d96df9afc9b5dd558ef817","type":"PII","value":"181-184","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":480.47},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1484,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618324Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786885Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"75ce9becbbe6a649000dba2f34c0952a","type":"PII","value":"265-268","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":382.89},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1493,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618324Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786885Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4b9b672863ad69e0870413ea87f47b6b","type":"PII","value":"273-276","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":361.29},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1495,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618324Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786885Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7e3cd5a7e9702e90b9ac48e6ce456a80","type":"PII","value":"300 141-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.81,"y":545.99},"width":14.619995,"height":10.0905,"page":103},{"topLeft":{"x":405.67,"y":545.63},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1478,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618324Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786885Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9ddc86651737a3305a737dd26a5ad3d","type":"PII","value":"277-280","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":350.37},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1496,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618324Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786886Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7c8e081f9f8160601c2b1f93fa1ed385","type":"PII","value":"209-212","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":447.95},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1487,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618325Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786886Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5a5167baa1d0ad737c03cd0b515405bd","type":"PII","value":"145-148","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":534.71},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1479,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618325Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786886Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12e3f76c146618c0b824ce0ed8a498cf","type":"PII","value":"137-140","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":556.43},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1477,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618325Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786886Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"97af9766c5d74e52b637519588ca585a","type":"PII","value":"201-204","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":469.67},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1485,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618325Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786886Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4b02ea23688e4d97c0196d54779e3ffe","type":"PII","value":"149-152","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":523.91},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1480,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618325Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786886Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"26fe97699279afada91dded527007f3c","type":"PII","value":"213-216","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":437.15},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1488,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618326Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786887Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7240f3c9083686b9cb40e4189220c9e5","type":"PII","value":"200 237-240","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.81,"y":415.89},"width":14.619995,"height":10.0905,"page":103},{"topLeft":{"x":405.67,"y":415.41},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1490,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618326Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786887Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8834505cb84d93b8ed5b0de26b6b904e","type":"PII","value":"245-248","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":393.81},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1492,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618326Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786887Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9354ef15313c07be4c22f8e8221c0c7a","type":"PII","value":"233-236","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":426.23},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1489,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618326Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786887Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f9ba93a81324c4e86887d57a0cceb478","type":"PII","value":"241-244","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":404.61},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1491,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618326Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786887Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7e9ab342bf356d0049e24286b87810ad","type":"PII","value":"30 109-112","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.81,"y":589.46},"width":10.059998,"height":10.0905,"page":103},{"topLeft":{"x":405.67,"y":588.86},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1474,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618327Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786887Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"59371b0b1c36ae6ff198a74f937fa1dd","type":"PII","value":"29-32","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":654.02},"width":22.059998,"height":10.0905,"page":103}],"sectionNumber":1468,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618327Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786888Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4a5b275cc8780c17887f4f26390fe55b","type":"PII","value":"100 61","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.81,"y":632.78},"width":14.619995,"height":10.0905,"page":103},{"topLeft":{"x":405.67,"y":610.58},"width":10.059998,"height":10.0905,"page":103}],"sectionNumber":1472,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618327Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786888Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d9004eb79a14d6b36b6347433e8bcd4b","type":"PII","value":"1000 205-208","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.81,"y":459.35},"width":19.044998,"height":10.0905,"page":103},{"topLeft":{"x":405.67,"y":458.75},"width":31.050995,"height":10.0905,"page":103}],"sectionNumber":1486,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618327Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786888Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0236f721d0015e822c574d1c4a217328","type":"PII","value":"100 53-56","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.81,"y":632.78},"width":14.619995,"height":10.0905,"page":103},{"topLeft":{"x":405.67,"y":632.3},"width":22.059998,"height":10.0905,"page":103}],"sectionNumber":1470,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618327Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786888Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c6e29936dca5d2ab662c1f50c7702b83","type":"PII","value":"25-28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing and day 7 blood sampling regime in the mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.67,"y":664.82},"width":22.059998,"height":10.0905,"page":103}],"sectionNumber":1467,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618328Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786889Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"edbf26036acc2af35cfb265b2edf549f","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":141.0,"y":84.0},"width":269.0,"height":188.0,"page":105}],"sectionNumber":1501,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618328Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c0cdcb10f60380df9097d258ba291dc6","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":146.0,"y":328.0},"width":258.0,"height":189.0,"page":105}],"sectionNumber":1501,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618328Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d0e1edcbe6e3823abf473f8775e82ff","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":251.9555,"y":451.19},"width":56.108765,"height":10.526819,"page":106}],"sectionNumber":1503,"textBefore":"EH33 2NE, UK. ","textAfter":" Report No.","comments":null,"startOffset":1600,"endOffset":1613,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618328Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4de1fe94b9a1ba90c2f3e94cab6f7525","type":"PII","value":"95-110","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":161.69424,"y":66.27997},"width":32.16577,"height":11.017679,"page":106}],"sectionNumber":1503,"textBefore":"a mean of ","textAfter":"% of the","comments":null,"startOffset":1116,"endOffset":1122,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618328Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786889Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"305dddabb0e9b7263efd6668ca47e7c7","type":"CBI_author","value":"Tomlinson J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.01263,"y":486.47},"width":53.110718,"height":10.526819,"page":106}],"sectionNumber":1503,"textBefore":"Report: K-CA 5.1.1/08 ","textAfter":", Hutton E.,","comments":null,"startOffset":1317,"endOffset":1329,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618329Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"573dc531fe11c1fe3b24d87dc775153b","type":"CBI_author","value":"Hutton E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":253.05354,"y":486.47},"width":39.814194,"height":10.526819,"page":106}],"sectionNumber":1503,"textBefore":"5.1.1/08 Tomlinson J., ","textAfter":", Green M.","comments":null,"startOffset":1331,"endOffset":1340,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618329Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"597f19495275f262e5a0464b57387356","type":"PII","value":"(87-97","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":392.8608,"y":142.5},"width":30.609161,"height":11.017679,"page":106}],"sectionNumber":1503,"textBefore":"of administered radioactivity ","textAfter":"%) was excreted","comments":null,"startOffset":752,"endOffset":758,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618329Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78689Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1b980197a57a273249a5c71db99fefcf","type":"CBI_author","value":"Punler M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":391.49945,"y":537.83},"width":42.245483,"height":11.017679,"page":106}],"sectionNumber":1502,"textBefore":"were observed. (","textAfter":" and Harris","comments":null,"startOffset":1123,"endOffset":1131,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618329Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b15a97451e60a01c59ca6aee3c6b0a0b","type":"CBI_address","value":"Charles River Laboratories Edinburgh Ltd, Tranent, Edinburgh, EH33 2NE, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":309.05627,"y":462.71},"width":214.92908,"height":10.526819,"page":106},{"topLeft":{"x":133.82,"y":451.19},"width":111.69537,"height":10.526819,"page":106}],"sectionNumber":1503,"textBefore":"in the Mouse. ","textAfter":". Charles River","comments":null,"startOffset":1524,"endOffset":1598,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61833Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"194a78c22a7d0faa27f4dac432d350e2","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"CONCLUSION:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":255.46931,"y":359.01},"width":82.64076,"height":11.017679,"page":106}],"sectionNumber":1502,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1332,"endOffset":1349,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61833Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e7312797a3e1bf115b7a670b66d82b3","type":"CBI_author","value":"Green M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":296.9075,"y":486.47},"width":39.196594,"height":10.526819,"page":106}],"sectionNumber":1503,"textBefore":"J., Hutton E., ","textAfter":" and Allan","comments":null,"startOffset":1342,"endOffset":1350,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61833Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"403b268f7a93685cf86263b69624df74","type":"PII","value":"100-300","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":361.37125,"y":727.58},"width":37.618713,"height":11.017679,"page":106}],"sectionNumber":1502,"textBefore":"between 10 and ","textAfter":" mg/kg in","comments":null,"startOffset":275,"endOffset":282,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61833Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786891Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"779c2342df4fd84a7162675b2f3ff6c1","type":"PII","value":"15-30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.74634,"y":117.29999},"width":26.753662,"height":11.017679,"page":106}],"sectionNumber":1503,"textBefore":"excretion accounted for ","textAfter":"% of the","comments":null,"startOffset":978,"endOffset":983,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618331Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786891Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a70ce54cc0b19c929b95bb96ef1ada3e","type":"PII","value":"(88-103","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.0851,"y":53.679993},"width":36.06485,"height":11.017679,"page":106}],"sectionNumber":1503,"textBefore":"of administered radioactivity ","textAfter":"%) was excreted","comments":null,"startOffset":1265,"endOffset":1272,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618331Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786891Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7bb788d5ad5e61bb27fa6cf3ba0ce9c6","type":"CBI_author","value":"Harris J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":454.2398,"y":537.83},"width":35.400665,"height":11.017679,"page":106}],"sectionNumber":1502,"textBefore":"(Punler M and ","textAfter":", 2014a) Guidelines:","comments":null,"startOffset":1136,"endOffset":1144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618331Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"231d331c6f22081c67fd56bb8776e4ef","type":"PII","value":"(63-79","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":296.65826,"y":117.29999},"width":30.331726,"height":11.017679,"page":106}],"sectionNumber":1503,"textBefore":"in the feces ","textAfter":"%). Urinary excretion","comments":null,"startOffset":936,"endOffset":942,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618331Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786891Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8480d9bbb751d41e720dc62fb8c256f3","type":"CBI_author","value":"Allan G.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":354.56598,"y":486.47},"width":35.37201,"height":10.526819,"page":106}],"sectionNumber":1503,"textBefore":"Green M. and ","textAfter":" (2015). SYN545974","comments":null,"startOffset":1355,"endOffset":1363,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618332Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cb23d78e7fdd3180cdf4158610742335","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":189.80515,"y":439.55},"width":38.16078,"height":10.526819,"page":106}],"sectionNumber":1503,"textBefore":"August 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":1672,"endOffset":1680,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618332Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c59869e7fc36e4bd573de94a54880815","type":"PII","value":"97-103","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":161.69424,"y":155.22003},"width":32.16577,"height":11.017679,"page":106}],"sectionNumber":1503,"textBefore":"a mean of ","textAfter":"% of the","comments":null,"startOffset":603,"endOffset":609,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618332Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786892Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e533c2781d64e3dcdb7c3ae614be711c","type":"CBI_address","value":"Syngenta Crop Protection Inc","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":222.05,"y":436.43},"width":107.74901,"height":10.0905,"page":108}],"sectionNumber":1505,"textBefore":null,"textAfter":" Münchwilen AG","comments":null,"startOffset":38,"endOffset":66,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618332Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f8ed92bc1aadf15f90eabd4249355dc5","type":"CBI_address","value":"Münchwilen AG","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":331.031,"y":436.43},"width":61.596954,"height":10.0905,"page":108}],"sectionNumber":1505,"textBefore":"Crop Protection Inc ","textAfter":null,"comments":null,"startOffset":67,"endOffset":80,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618332Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d729d96c8eb85397448cf854df5f528f","type":"hint_only","value":"purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":129.68698,"y":185.46002},"width":27.981995,"height":10.018499,"page":108}],"sectionNumber":1506,"textBefore":null,"textAfter":null,"comments":null,"startOffset":229,"endOffset":236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618332Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"919b69af01c00f314de4b1f08db4495f","type":"CBI_address","value":"Syngenta Crop Protection","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":222.05,"y":342.93},"width":93.997025,"height":10.0905,"page":108}],"sectionNumber":1506,"textBefore":null,"textAfter":" LLC","comments":null,"startOffset":90,"endOffset":114,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618333Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8cded46ef3cebbe8356a9ee0c5e27410","type":"hint_only","value":"purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":129.68698,"y":358.17},"width":27.981995,"height":10.018499,"page":108}],"sectionNumber":1506,"textBefore":null,"textAfter":null,"comments":null,"startOffset":68,"endOffset":75,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618333Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1ec8e33de75f672d611cdd05cb99a695","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"The biotransformation proceeded by:","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":216.0,"y":226.0},"width":163.0,"height":88.0,"page":108}],"sectionNumber":1504,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618333Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"df9e9c9516c4fb7075119352303bc5ec","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"The biotransformation proceeded by:","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":222.0,"y":450.0},"width":162.0,"height":75.0,"page":108}],"sectionNumber":1504,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618333Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c1d4f48f0033f69cd8898761d6bd20d1","type":"PII","value":"24-39","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":254.28502,"y":275.13},"width":22.218979,"height":10.0905,"page":109}],"sectionNumber":1509,"textBefore":"a range of ","textAfter":"%. In the","comments":null,"startOffset":1017,"endOffset":1022,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618333Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786893Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"88cf8822996ce573b7c3632888b53f9f","type":"hint_only","value":"study director","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":369.86896,"y":275.13},"width":55.54901,"height":10.0905,"page":109}],"sectionNumber":1509,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1047,"endOffset":1061,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618334Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ca2dd36b6392611edc7b20ac46385b06","type":"CBI_address","value":"Special Diet Services, Stepfield, Witham, Essex, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":369.89908,"y":359.25},"width":155.31418,"height":10.0905,"page":109},{"topLeft":{"x":220.13,"y":348.93},"width":39.411987,"height":10.0905,"page":109}],"sectionNumber":1509,"textBefore":"No.1 maintenance diet, ","textAfter":". Ad libitum","comments":null,"startOffset":695,"endOffset":746,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618334Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cbeab7412db735ce1886f5309712c521","type":"PII","value":"26-33","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":254.64502,"y":475.55},"width":21.981995,"height":10.0905,"page":109}],"sectionNumber":1509,"textBefore":"weeks Group 1: ","textAfter":" g (males),","comments":null,"startOffset":85,"endOffset":90,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618334Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786894Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2f80c9a1e5369c65d147e423ee5918bf","type":"PII","value":"29-31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":254.64502,"y":464.51},"width":21.981995,"height":10.0905,"page":109}],"sectionNumber":1509,"textBefore":"(females) Group 2: ","textAfter":" g (males),","comments":null,"startOffset":129,"endOffset":134,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618334Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786894Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a728a89e486ee0cf61ed85e2f7b3b71a","type":"PII","value":"29-36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":254.64502,"y":453.11},"width":21.981995,"height":10.0905,"page":109}],"sectionNumber":1509,"textBefore":"(females) Group 3: ","textAfter":" g (males),","comments":null,"startOffset":173,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618335Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786894Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0ea4c38566e9e8678d25c5728119576a","type":"PII","value":"28-32","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":254.64502,"y":441.83},"width":21.981995,"height":10.0905,"page":109}],"sectionNumber":1509,"textBefore":"(females) Group 4: ","textAfter":" g (males),","comments":null,"startOffset":217,"endOffset":222,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618335Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786895Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b07da82fca8f8fb2492843ada03e354d","type":"PII","value":"22-30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":315.9561,"y":475.55},"width":22.247894,"height":10.0905,"page":109}],"sectionNumber":1509,"textBefore":"26-33 g (males), ","textAfter":" g (females)","comments":null,"startOffset":102,"endOffset":107,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618335Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786895Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3f75a4dd4f756ad923bcf4ea7a798079","type":"PII","value":"21-25","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":315.9561,"y":464.51},"width":22.247894,"height":10.0905,"page":109}],"sectionNumber":1509,"textBefore":"29-31 g (males), ","textAfter":" g (females)","comments":null,"startOffset":146,"endOffset":151,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618335Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786895Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"55329c25ec8a5965835482aee94757ac","type":"PII","value":"23-28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":315.9561,"y":453.11},"width":22.247894,"height":10.0905,"page":109}],"sectionNumber":1509,"textBefore":"29-36 g (males), ","textAfter":" g (females)","comments":null,"startOffset":190,"endOffset":195,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618335Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786895Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f5113e0a6bb7bf96b417dbb94be9b00a","type":"PII","value":"10-11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":267.96503,"y":311.13},"width":22.218964,"height":10.0905,"page":109}],"sectionNumber":1509,"textBefore":"59%A Air changes: ","textAfter":" changes/hour Photoperiod:","comments":null,"startOffset":868,"endOffset":873,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618336Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786895Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8394345ef0e89d97633bdfcc1890b677","type":"PII","value":"24-29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":316.03,"y":441.83},"width":22.17398,"height":10.0905,"page":109}],"sectionNumber":1509,"textBefore":"28-32 g (males), ","textAfter":" g (females)","comments":null,"startOffset":234,"endOffset":239,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618336Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786896Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"547a18973d65621f1bf02ccc46900551","type":"PII","value":"(11-12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":319.859,"y":285.45},"width":25.067993,"height":10.0905,"page":109}],"sectionNumber":1509,"textBefore":"On several occasions ","textAfter":" and 14","comments":null,"startOffset":956,"endOffset":962,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618336Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786896Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8dd949611fe0aadc22fbb42f07b1ada7","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":222.0,"y":655.0},"width":161.0,"height":90.0,"page":109}],"sectionNumber":1510,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618336Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"222315b0edf16d997e24ece3a69d09a2","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-49: Recovery of radioactivity in excreta and tissues after administration of a single\noral dose of [Phenyl-14C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.58,"y":257.85004},"width":22.054,"height":10.0905,"page":111}],"sectionNumber":1525,"textBefore":"h 48-72 h ","textAfter":" h 96-120","comments":null,"startOffset":29,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618337Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786896Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6223066acdeac36f7878aca3f7f4a9e7","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-49: Recovery of radioactivity in excreta and tissues after administration of a single\noral dose of [Phenyl-14C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.58,"y":269.25},"width":22.054,"height":10.0905,"page":111}],"sectionNumber":1527,"textBefore":"h 24-48 h ","textAfter":" h 72-96","comments":null,"startOffset":24,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618337Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786896Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9e9b3bef495111fcce748322ecdeb851","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-49: Recovery of radioactivity in excreta and tissues after administration of a single\noral dose of [Phenyl-14C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":137.3,"y":339.21},"width":26.490997,"height":10.0905,"page":111}],"sectionNumber":1524,"textBefore":"h 72-96 h ","textAfter":" h 120-144","comments":null,"startOffset":43,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618337Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786896Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9eb98aa5714447f07329952e7130a1f6","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-49: Recovery of radioactivity in excreta and tissues after administration of a single\noral dose of [Phenyl-14C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.02,"y":234.77997},"width":31.050995,"height":10.0905,"page":111}],"sectionNumber":1526,"textBefore":"h 96-120 h ","textAfter":" h 144-168","comments":null,"startOffset":50,"endOffset":57,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618337Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786897Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"726b19559018e7583953eea94e682b33","type":"PII","value":"97 98 96 98","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-49: Recovery of radioactivity in excreta and tissues after administration of a single\noral dose of [Phenyl-14C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":228.41,"y":133.85999},"width":10.059998,"height":10.0905,"page":111},{"topLeft":{"x":314.71,"y":133.85999},"width":10.059998,"height":10.0905,"page":111},{"topLeft":{"x":404.47,"y":133.85999},"width":10.059998,"height":10.0905,"page":111},{"topLeft":{"x":484.78,"y":133.85999},"width":10.059998,"height":10.0905,"page":111}],"sectionNumber":1530,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":95,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618337Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786897Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"50ddd0ba7924e6f7c2e55378dad45a26","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-49: Recovery of radioactivity in excreta and tissues after administration of a single\noral dose of [Phenyl-14C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.02,"y":223.38},"width":31.050995,"height":10.0905,"page":111}],"sectionNumber":1527,"textBefore":"h 120-144 h ","textAfter":" h Subtotal","comments":null,"startOffset":59,"endOffset":66,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618338Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786897Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62de71421457755764e2d2f2eef34fc6","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-49: Recovery of radioactivity in excreta and tissues after administration of a single\noral dose of [Phenyl-14C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.58,"y":280.76996},"width":22.054,"height":10.0905,"page":111}],"sectionNumber":1525,"textBefore":"0-24 h ","textAfter":" h 48-72","comments":null,"startOffset":13,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618338Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786897Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4c68b80d2185c935056d1843bc394220","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-49: Recovery of radioactivity in excreta and tissues after administration of a single\noral dose of [Phenyl-14C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.58,"y":362.13},"width":22.054,"height":10.0905,"page":111}],"sectionNumber":1524,"textBefore":"h 24-48 h ","textAfter":" h 72-96","comments":null,"startOffset":27,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618338Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786898Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fbd23a0690cc3c79cb75b9b4f0ac1c73","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-49: Recovery of radioactivity in excreta and tissues after administration of a single\noral dose of [Phenyl-14C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":137.3,"y":246.29999},"width":26.490997,"height":10.0905,"page":111}],"sectionNumber":1530,"textBefore":"h 72-96 h ","textAfter":" h 120-144","comments":null,"startOffset":46,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618338Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786898Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8c343e51d65ee21507a521df596e0d8c","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-49: Recovery of radioactivity in excreta and tissues after administration of a single\noral dose of [Phenyl-14C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.02,"y":327.69},"width":31.050995,"height":10.0905,"page":111}],"sectionNumber":1524,"textBefore":"h 96-120 h ","textAfter":" h 144-168","comments":null,"startOffset":52,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618339Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786898Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"42de7d54fe7ab730c7728e6c0b1e9650","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-49: Recovery of radioactivity in excreta and tissues after administration of a single\noral dose of [Phenyl-14C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.58,"y":350.61},"width":22.054,"height":10.0905,"page":111}],"sectionNumber":1524,"textBefore":"h 48-72 h ","textAfter":" h 96-120","comments":null,"startOffset":35,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618339Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786899Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2a6903b02733292adb483c108aa096e0","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-49: Recovery of radioactivity in excreta and tissues after administration of a single\noral dose of [Phenyl-14C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.58,"y":373.65},"width":22.054,"height":10.0905,"page":111}],"sectionNumber":1524,"textBefore":"h 8-24 h ","textAfter":" h 48-72","comments":null,"startOffset":19,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618339Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786899Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1bd35641ecf3ea67c8daca5c7072c386","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-49: Recovery of radioactivity in excreta and tissues after administration of a single\noral dose of [Phenyl-14C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.02,"y":316.16998},"width":31.050995,"height":10.0905,"page":111}],"sectionNumber":1524,"textBefore":"h 120-144 h ","textAfter":" h Subtotal","comments":null,"startOffset":62,"endOffset":69,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618339Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786899Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d75200354454673b15cace7ed867ae97","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":130.94,"y":351.93},"width":31.050995,"height":10.0905,"page":112}],"sectionNumber":1538,"textBefore":"h 96-120 h ","textAfter":" h 144-168","comments":null,"startOffset":50,"endOffset":57,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618339Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786899Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e4c8231a9a2a2962cf1f29d22cbf9140","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.38,"y":372.69},"width":22.054,"height":10.0905,"page":112}],"sectionNumber":1541,"textBefore":"h 48-72 h ","textAfter":" h 96-120","comments":null,"startOffset":31,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61834Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786899Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3b88c13f36752f1afd35b3450b419536","type":"PII","value":"101 103 110 98","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":222.53,"y":259.16998},"width":14.619995,"height":10.0905,"page":112},{"topLeft":{"x":312.79,"y":259.16998},"width":14.619995,"height":10.0905,"page":112},{"topLeft":{"x":403.15,"y":259.16998},"width":14.619995,"height":10.0905,"page":112},{"topLeft":{"x":491.86,"y":259.16998},"width":10.059998,"height":10.0905,"page":112}],"sectionNumber":1542,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":98,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61834Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786899Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"120f8ebc77bea393a0cde8d7a35b25a0","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.38,"y":393.21},"width":22.054,"height":10.0905,"page":112}],"sectionNumber":1541,"textBefore":"0-24 h ","textAfter":" h 48-72","comments":null,"startOffset":15,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61834Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.7869Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4fe7f71effd6b865bc50d2872093c9d1","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":130.94,"y":424.91},"width":31.050995,"height":10.0905,"page":112}],"sectionNumber":1536,"textBefore":"h 120-144 h ","textAfter":" h Subtotal","comments":null,"startOffset":62,"endOffset":69,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61834Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.7869Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b1b83920c81da3e6c7818d925b9e957a","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.1,"y":362.25},"width":26.490997,"height":10.0905,"page":112}],"sectionNumber":1538,"textBefore":"h 72-96 h ","textAfter":" h 120-144","comments":null,"startOffset":41,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618341Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.7869Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4387624deb81ed4277afeba5e658d12a","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.38,"y":466.31},"width":22.054,"height":10.0905,"page":112}],"sectionNumber":1536,"textBefore":"h 24-48 h ","textAfter":" h 72-96","comments":null,"startOffset":27,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618341Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786901Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"df5afb109fd0b17bfea6d5ab7888520d","type":"PII","value":"144-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":130.94,"y":341.61},"width":31.050995,"height":10.0905,"page":112}],"sectionNumber":1540,"textBefore":"h 120-144 h ","textAfter":" h Subtotal","comments":null,"startOffset":68,"endOffset":75,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618341Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786901Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0bd8d3575c3962508e8f701e2e06e468","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.38,"y":383.01},"width":22.054,"height":10.0905,"page":112}],"sectionNumber":1540,"textBefore":"h 24-48 h ","textAfter":" h 72-96","comments":null,"startOffset":33,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618341Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786901Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cd8e84119c55722c08de19469217d88d","type":"PII","value":"96-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.1,"y":445.67},"width":26.490997,"height":10.0905,"page":112}],"sectionNumber":1536,"textBefore":"h 72-96 h ","textAfter":" h 120-144","comments":null,"startOffset":43,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618341Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786901Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bb6972276c2936dd9883d6d535253c48","type":"PII","value":"63-79","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":301.43405,"y":195.89996},"width":26.635925,"height":11.017679,"page":112}],"sectionNumber":1592,"textBefore":"accounting for around ","textAfter":"% of the","comments":null,"startOffset":326,"endOffset":331,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618342Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786901Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"82a5cf58f026891a4859bcf0f20488b4","type":"PII","value":"120-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":130.94,"y":435.23},"width":31.050995,"height":10.0905,"page":112}],"sectionNumber":1536,"textBefore":"h 96-120 h ","textAfter":" h 144-168","comments":null,"startOffset":52,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618342Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786902Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8662f211c21219f544236d205cdb578a","type":"PII","value":"72-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.38,"y":455.99},"width":22.054,"height":10.0905,"page":112}],"sectionNumber":1536,"textBefore":"h 48-72 h ","textAfter":" h 96-120","comments":null,"startOffset":35,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618342Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786902Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2806516220d3a7b520afdd9eb5bcdb0a","type":"PII","value":"24-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.38,"y":476.63},"width":22.054,"height":10.0905,"page":112}],"sectionNumber":1536,"textBefore":"h 8-24 h ","textAfter":" h 48-72","comments":null,"startOffset":19,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618342Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786902Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d9f9fcb8f4abacb60e3a4135e522a0ef","type":"PII","value":"15-30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":79.682884,"y":183.65997},"width":26.461105,"height":11.017679,"page":112}],"sectionNumber":1592,"textBefore":"excretion accounted for ","textAfter":"% of the","comments":null,"startOffset":378,"endOffset":383,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618342Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786902Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c745192d733b61636e4a7ae48f6c2689","type":"PII","value":"76-94","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":335.18478,"y":133.85999},"width":26.72519,"height":11.017679,"page":112}],"sectionNumber":1592,"textBefore":"accounting for around ","textAfter":"% of the","comments":null,"startOffset":649,"endOffset":654,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618343Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786903Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9fbf9f806d14919942a91cfe3861f1e2","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":64.0,"y":204.0},"width":470.0,"height":561.0,"page":114}],"sectionNumber":1592,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618343Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c69f4fb4402b38a27e7e0fe2b3468005","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":64.0,"y":272.0},"width":471.0,"height":493.0,"page":115}],"sectionNumber":1592,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618343Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"963da8ba1bd40d5e7aa105857baf2412","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":131.0},"width":470.0,"height":622.0,"page":116}],"sectionNumber":1592,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618343Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"091031c177654b10f76c780e5a05b6e4","type":"PII","value":"8745 43","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.423,"y":200.34003},"width":18.928009,"height":10.0905,"page":117},{"topLeft":{"x":292.49,"y":200.34003},"width":10.053986,"height":10.0905,"page":117}],"sectionNumber":1575,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618343Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786904Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"da669ca901b8423d76eae4c51e82fdbb","type":"PII","value":"0462 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.423,"y":531.95},"width":18.928009,"height":10.0905,"page":117},{"topLeft":{"x":293.81,"y":521.27},"width":10.053986,"height":10.0905,"page":117}],"sectionNumber":1557,"textBefore":null,"textAfter":null,"comments":null,"startOffset":44,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618344Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786905Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dad47f0cf61151905684ccaf315682b2","type":"PII","value":"9564 32","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.423,"y":442.79},"width":18.928009,"height":10.0905,"page":117},{"topLeft":{"x":292.49,"y":442.79},"width":10.053986,"height":10.0905,"page":117}],"sectionNumber":1562,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618344Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786905Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b624eda50c583cd16ccda129a9ec25ca","type":"PII","value":"0619 33","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.423,"y":423.11},"width":18.928009,"height":10.0905,"page":117},{"topLeft":{"x":292.49,"y":423.11},"width":10.053986,"height":10.0905,"page":117}],"sectionNumber":1563,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618344Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786905Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"384339a1609accd780fd50e667baab94","type":"PII","value":"0142 41","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.423,"y":252.81},"width":18.928009,"height":10.0905,"page":117},{"topLeft":{"x":292.49,"y":252.81},"width":10.053986,"height":10.0905,"page":117}],"sectionNumber":1572,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618344Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786906Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8afae4e170dc00298c0d25e3147b1dec","type":"PII","value":"0462 39","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.423,"y":285.69},"width":18.928009,"height":10.0905,"page":117},{"topLeft":{"x":292.49,"y":285.69},"width":10.053986,"height":10.0905,"page":117}],"sectionNumber":1570,"textBefore":null,"textAfter":null,"comments":null,"startOffset":44,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618344Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786906Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"19f8f8e83610f2e75723dcf712be1290","type":"PII","value":"9564 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.423,"y":233.22003},"width":18.928009,"height":10.0905,"page":117},{"topLeft":{"x":292.49,"y":233.22003},"width":10.053986,"height":10.0905,"page":117}],"sectionNumber":1573,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618345Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786906Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ba30085bf9017083d507e1d7d00e80c3","type":"PII","value":"0462 34","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.423,"y":364.17},"width":18.928009,"height":10.0905,"page":117},{"topLeft":{"x":292.49,"y":364.17},"width":10.053986,"height":10.0905,"page":117}],"sectionNumber":1566,"textBefore":null,"textAfter":null,"comments":null,"startOffset":44,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618345Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786906Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f5b2fe34088c605180400abb2553c8c0","type":"PII","value":"9498 32","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.423,"y":462.35},"width":18.928009,"height":10.0905,"page":117},{"topLeft":{"x":292.49,"y":462.35},"width":10.053986,"height":10.0905,"page":117}],"sectionNumber":1561,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618345Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786906Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f7c4dfd91915c35d920a084dc5cad6e2","type":"PII","value":"0462 33","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.423,"y":403.41},"width":18.928009,"height":10.0905,"page":117},{"topLeft":{"x":292.49,"y":403.41},"width":10.053986,"height":10.0905,"page":117}],"sectionNumber":1564,"textBefore":null,"textAfter":null,"comments":null,"startOffset":44,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618345Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786906Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b71fe1d64dca9d6ab438cc4559ca0891","type":"PII","value":"8684 31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.423,"y":475.55},"width":18.928009,"height":10.0905,"page":117},{"topLeft":{"x":292.49,"y":475.55},"width":10.053986,"height":10.0905,"page":117}],"sectionNumber":1560,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618345Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786906Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"141896c877ecd20e4d5c7538d678fe1f","type":"PII","value":"0531 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.789,"y":615.5},"width":18.928009,"height":10.0905,"page":118},{"topLeft":{"x":294.17,"y":615.5},"width":10.053986,"height":10.0905,"page":118}],"sectionNumber":1585,"textBefore":null,"textAfter":null,"comments":null,"startOffset":47,"endOffset":54,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618346Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786907Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b126e64d7c0c2f9353d11beadf648ab9","type":"PII","value":"0192 49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.783,"y":632.66},"width":18.927994,"height":10.0905,"page":118},{"topLeft":{"x":294.17,"y":632.66},"width":10.053986,"height":10.0905,"page":118}],"sectionNumber":1584,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618346Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786907Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a18a97b3d7125ed8400b24c7239b236c","type":"PII","value":"9564 47","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.783,"y":645.86},"width":18.927994,"height":10.0905,"page":118},{"topLeft":{"x":294.17,"y":645.86},"width":10.053986,"height":10.0905,"page":118}],"sectionNumber":1583,"textBefore":null,"textAfter":null,"comments":null,"startOffset":31,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618346Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786907Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0bb15c6e9b7ca2bb7aab105c09e8441e","type":"PII","value":"49 17","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":354.05798,"y":598.34},"width":10.053986,"height":10.0905,"page":118},{"topLeft":{"x":395.95,"y":598.34},"width":10.053986,"height":10.0905,"page":118}],"sectionNumber":1586,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618346Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786907Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a35c16b184c9ade1459b487ced64947c","type":"PII","value":"78 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: oral dose of [Pyrazole- 14 C]-SYN545974 to mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":463.40198,"y":598.34},"width":9.937012,"height":10.0905,"page":118},{"topLeft":{"x":498.46,"y":598.34},"width":10.053986,"height":10.0905,"page":118}],"sectionNumber":1586,"textBefore":null,"textAfter":null,"comments":null,"startOffset":43,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618346Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786907Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"373002968048c8368ef010fe0ad02b96","type":"PII","value":"0619 40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":316.28998},"width":18.928009,"height":10.0905,"page":119},{"topLeft":{"x":295.25,"y":316.28998},"width":10.053986,"height":10.0905,"page":119}],"sectionNumber":1621,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618347Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786908Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e637ae8a3ae5983cc9511f849a25ba9a","type":"PII","value":"0462 33","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":388.89},"width":18.928009,"height":10.0905,"page":119},{"topLeft":{"x":295.25,"y":388.89},"width":10.053986,"height":10.0905,"page":119}],"sectionNumber":1616,"textBefore":null,"textAfter":null,"comments":null,"startOffset":44,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618347Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786908Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c5e50250a23708537014fb25b1246c93","type":"PII","value":"0619 33","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":408.45},"width":18.928009,"height":10.0905,"page":119},{"topLeft":{"x":295.25,"y":408.45},"width":10.053986,"height":10.0905,"page":119}],"sectionNumber":1615,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618347Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786908Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7bcde91311fabf74adda5c0a5509b7e4","type":"PII","value":"0462 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":481.07},"width":18.96698,"height":10.0905,"page":119},{"topLeft":{"x":295.25,"y":477.95},"width":10.053986,"height":10.0905,"page":119}],"sectionNumber":1610,"textBefore":null,"textAfter":null,"comments":null,"startOffset":44,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618347Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786908Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62fb458bbd116af07c27b8d0f09554cd","type":"PII","value":"0947 26","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":500.75},"width":18.928009,"height":10.0905,"page":119},{"topLeft":{"x":295.25,"y":500.75},"width":10.053986,"height":10.0905,"page":119}],"sectionNumber":1609,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618347Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786908Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ca3b862baf7c86691e0544cc4448d399","type":"PII","value":"0619 41","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":303.09003},"width":18.928009,"height":10.0905,"page":119},{"topLeft":{"x":295.25,"y":303.09003},"width":10.053986,"height":10.0905,"page":119}],"sectionNumber":1622,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618348Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786908Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"28e75bc49260997595778e9dc89cca66","type":"PII","value":"9664 47","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":624.02},"width":18.928009,"height":10.0905,"page":120},{"topLeft":{"x":295.25,"y":624.02},"width":10.053986,"height":10.0905,"page":120}],"sectionNumber":1632,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618348Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786908Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"037d4aae72130dd3a138c05c0585f9af","type":"PII","value":"0298 56","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":234.53998},"width":18.928009,"height":10.0905,"page":121},{"topLeft":{"x":295.25,"y":234.53998},"width":10.053986,"height":10.0905,"page":121}],"sectionNumber":1672,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618348Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786909Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1ec6202fe76ad2a7951b19cc23057f24","type":"PII","value":"0142 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":420.83},"width":18.928009,"height":10.0905,"page":121},{"topLeft":{"x":295.25,"y":420.83},"width":10.053986,"height":10.0905,"page":121}],"sectionNumber":1660,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618348Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786909Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"adab635a51cd8e9a2de9578cc2da7ba3","type":"PII","value":"0142 41","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":436.31},"width":18.928009,"height":10.0905,"page":121},{"topLeft":{"x":295.25,"y":436.31},"width":10.053986,"height":10.0905,"page":121}],"sectionNumber":1659,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618348Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786909Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6f8356b78fd4d0c3368e8dec78f5f646","type":"PII","value":"9985 45","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":405.09},"width":18.928009,"height":10.0905,"page":121},{"topLeft":{"x":295.25,"y":405.09},"width":10.053986,"height":10.0905,"page":121}],"sectionNumber":1661,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618348Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786909Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"159bd7413dba96d9ad43f177e72e4cfe","type":"PII","value":"0142 40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":451.67},"width":18.928009,"height":10.0905,"page":121},{"topLeft":{"x":295.25,"y":451.67},"width":10.053986,"height":10.0905,"page":121}],"sectionNumber":1658,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618349Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786909Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8c6bb89a9921923cf2a16a501c353258","type":"PII","value":"0192 49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":343.17},"width":18.928009,"height":10.0905,"page":121},{"topLeft":{"x":295.25,"y":343.17},"width":10.053986,"height":10.0905,"page":121}],"sectionNumber":1665,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618349Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78691Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"75cac6f917deb06b3047469388b839c0","type":"PII","value":"0036 46","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":389.61},"width":18.928009,"height":10.0905,"page":121},{"topLeft":{"x":295.25,"y":389.61},"width":10.053986,"height":10.0905,"page":121}],"sectionNumber":1662,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618349Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78691Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"15e25870da6805af9761818133c63372","type":"PII","value":"9985 36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":498.23},"width":18.928009,"height":10.0905,"page":121},{"topLeft":{"x":295.25,"y":498.23},"width":10.053986,"height":10.0905,"page":121}],"sectionNumber":1655,"textBefore":null,"textAfter":null,"comments":null,"startOffset":36,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618349Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78691Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0163f5b541264be5eb596f952e07243f","type":"PII","value":"0142 48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":358.53},"width":18.928009,"height":10.0905,"page":121},{"topLeft":{"x":295.25,"y":358.53},"width":10.053986,"height":10.0905,"page":121}],"sectionNumber":1664,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618349Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78691Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bdb6aed3555de86780421ca6520d2477","type":"PII","value":"0247 37","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":482.63},"width":18.928009,"height":10.0905,"page":121},{"topLeft":{"x":295.25,"y":482.63},"width":10.053986,"height":10.0905,"page":121}],"sectionNumber":1656,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61835Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78691Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b0c4f70a8ee8d382fd87ba471c6d0e81","type":"PII","value":"0192 59","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":203.34003},"width":18.928009,"height":10.0905,"page":121},{"topLeft":{"x":295.25,"y":203.34003},"width":10.053986,"height":10.0905,"page":121}],"sectionNumber":1674,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61835Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78691Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c2f58f739758b8c8a94f115711d81c6b","type":"PII","value":"08 48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.732,"y":604.7},"width":9.937012,"height":10.0905,"page":122},{"topLeft":{"x":449.62,"y":604.7},"width":10.053986,"height":10.0905,"page":122}],"sectionNumber":1682,"textBefore":null,"textAfter":null,"comments":null,"startOffset":31,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61835Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78691Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b9d3d701669c68c9a207b5ff9d1f7f05","type":"PII","value":"0349 66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":604.7},"width":18.928009,"height":10.0905,"page":122},{"topLeft":{"x":292.01,"y":604.7},"width":10.053986,"height":10.0905,"page":122}],"sectionNumber":1682,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61835Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78691Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4bf15d549fb2971aa84d92a89c6fb4d2","type":"PII","value":"79 47","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.88797,"y":604.7},"width":10.053986,"height":10.0905,"page":122},{"topLeft":{"x":494.86,"y":604.7},"width":10.059998,"height":10.0905,"page":122}],"sectionNumber":1682,"textBefore":null,"textAfter":null,"comments":null,"startOffset":37,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61835Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786911Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"43781af0959a921f032f75f629871952","type":"PII","value":"0142 52","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":278.61},"width":18.928009,"height":10.0905,"page":123},{"topLeft":{"x":295.25,"y":278.61},"width":10.053986,"height":10.0905,"page":123}],"sectionNumber":1718,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618351Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786911Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"184de69bf83b1c9ecd7cf15abdd61396","type":"PII","value":"9985 36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":495.83},"width":18.928009,"height":10.0905,"page":123},{"topLeft":{"x":295.25,"y":495.83},"width":10.053986,"height":10.0905,"page":123}],"sectionNumber":1704,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618351Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786911Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"038686264b4a12ddd7742b73c255609a","type":"PII","value":"0142 48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":340.89},"width":18.928009,"height":10.0905,"page":123},{"topLeft":{"x":295.25,"y":340.89},"width":10.053986,"height":10.0905,"page":123}],"sectionNumber":1714,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618351Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786911Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ee92ec509f273f438ed4b5e1b8df2766","type":"PII","value":"0247 37","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":480.35},"width":18.928009,"height":10.0905,"page":123},{"topLeft":{"x":295.25,"y":480.35},"width":10.053986,"height":10.0905,"page":123}],"sectionNumber":1705,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618351Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786912Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9b4780a7135cca866be1054f5b60dc21","type":"PII","value":"0192 59","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":216.53998},"width":18.928009,"height":10.0905,"page":123},{"topLeft":{"x":295.25,"y":216.53998},"width":10.053986,"height":10.0905,"page":123}],"sectionNumber":1722,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618351Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786912Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6384dc18382036eeaba6e7f192987500","type":"PII","value":"0298 56","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":232.26001},"width":18.928009,"height":10.0905,"page":123},{"topLeft":{"x":295.25,"y":232.26001},"width":10.053986,"height":10.0905,"page":123}],"sectionNumber":1721,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618352Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786912Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4c3304a67d9e0af945bcf85860201567","type":"PII","value":"9985 45","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":387.21},"width":18.928009,"height":10.0905,"page":123},{"topLeft":{"x":295.25,"y":387.21},"width":10.053986,"height":10.0905,"page":123}],"sectionNumber":1711,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618352Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786912Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"55f93687f45b81f7573e0729da81ac62","type":"PII","value":"0142 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":434.03},"width":18.928009,"height":10.0905,"page":123},{"topLeft":{"x":295.25,"y":434.03},"width":10.053986,"height":10.0905,"page":123}],"sectionNumber":1708,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618352Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786912Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12ed4ad765dc78c858b781bd93726f32","type":"PII","value":"0142 41","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":449.39},"width":18.928009,"height":10.0905,"page":123},{"topLeft":{"x":295.25,"y":449.39},"width":10.053986,"height":10.0905,"page":123}],"sectionNumber":1707,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618352Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786912Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"28164a3ca06950541579b6db44c77a0a","type":"PII","value":"0192 49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":325.40997},"width":18.928009,"height":10.0905,"page":123},{"topLeft":{"x":295.25,"y":325.40997},"width":10.053986,"height":10.0905,"page":123}],"sectionNumber":1715,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618352Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786913Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6d3f9d35bd07f988abb7eaeb9cd49290","type":"PII","value":"0142 40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":464.87},"width":18.928009,"height":10.0905,"page":123},{"topLeft":{"x":295.25,"y":464.87},"width":10.053986,"height":10.0905,"page":123}],"sectionNumber":1706,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618352Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786913Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6a02a56d7f817cdfbadeed8f0434bce9","type":"PII","value":"0947 26","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":542.51},"width":18.928009,"height":10.0905,"page":123},{"topLeft":{"x":295.25,"y":542.51},"width":10.053986,"height":10.0905,"page":123}],"sectionNumber":1701,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618353Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786913Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2d3bffa7ea5269e54aa68b574807bfd5","type":"PII","value":"28 36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.88797,"y":607.1},"width":10.053986,"height":10.0905,"page":124},{"topLeft":{"x":489.1,"y":607.1},"width":10.053986,"height":10.0905,"page":124}],"sectionNumber":1730,"textBefore":null,"textAfter":null,"comments":null,"startOffset":37,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618353Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786913Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"841bc428a2dcf89eb2d48f8e0e840cda","type":"PII","value":"58 44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.732,"y":607.1},"width":9.937012,"height":10.0905,"page":124},{"topLeft":{"x":449.62,"y":607.1},"width":10.053986,"height":10.0905,"page":124}],"sectionNumber":1730,"textBefore":null,"textAfter":null,"comments":null,"startOffset":31,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618353Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786913Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62b3777658419757aa61c30fc49f377f","type":"PII","value":"0349 65","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]- SYN545974 at 10 mg/kg and 300 mg/kg (continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.863,"y":607.1},"width":18.928009,"height":10.0905,"page":124},{"topLeft":{"x":292.01,"y":607.1},"width":10.053986,"height":10.0905,"page":124}],"sectionNumber":1730,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618353Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786913Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3721e0bef71576b3204757e072ff49b0","type":"PII","value":"0462 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94301,"y":479.39},"width":18.928024,"height":10.0905,"page":125},{"topLeft":{"x":297.05,"y":479.39},"width":10.053986,"height":10.0905,"page":125}],"sectionNumber":1755,"textBefore":null,"textAfter":null,"comments":null,"startOffset":44,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618353Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786914Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5ba54827b549022943634142ef505f6d","type":"PII","value":"0247 38","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94301,"y":318.81},"width":18.928024,"height":10.0905,"page":125},{"topLeft":{"x":297.05,"y":318.81},"width":10.053986,"height":10.0905,"page":125}],"sectionNumber":1765,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618354Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786914Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"882c8acc2cd0db47f1cabb11f058af63","type":"PII","value":"0619 34","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94301,"y":396.45},"width":18.928024,"height":10.0905,"page":125},{"topLeft":{"x":297.05,"y":396.45},"width":10.053986,"height":10.0905,"page":125}],"sectionNumber":1760,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618354Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786914Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"064b1d0699486562fbed3aec75480d6e","type":"PII","value":"0142 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94301,"y":210.18},"width":18.928024,"height":10.0905,"page":125},{"topLeft":{"x":297.05,"y":210.18},"width":10.053986,"height":10.0905,"page":125}],"sectionNumber":1772,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618354Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786914Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4f1d9eb916f37287f8d109bdcae87e9c","type":"PII","value":"0142 41","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94301,"y":241.26001},"width":18.928024,"height":10.0905,"page":125},{"topLeft":{"x":297.05,"y":241.26001},"width":10.053986,"height":10.0905,"page":125}],"sectionNumber":1770,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618354Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786914Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"80c3e761eeacaef413e61ec25e87dfc2","type":"PII","value":"0142 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94301,"y":225.77997},"width":18.928024,"height":10.0905,"page":125},{"topLeft":{"x":297.05,"y":225.77997},"width":10.053986,"height":10.0905,"page":125}],"sectionNumber":1771,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618354Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786914Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7a0b33a4f735cd3e150286047a254279","type":"PII","value":"0142 49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94301,"y":546.59},"width":18.928024,"height":10.0905,"page":126},{"topLeft":{"x":297.05,"y":546.59},"width":10.053986,"height":10.0905,"page":126}],"sectionNumber":1787,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618355Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786915Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f0c102dad0037a9ebd2dc2803988e725","type":"PII","value":"0688 58","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94301,"y":453.47},"width":18.928024,"height":10.0905,"page":126},{"topLeft":{"x":297.05,"y":453.47},"width":10.053986,"height":10.0905,"page":126}],"sectionNumber":1793,"textBefore":null,"textAfter":null,"comments":null,"startOffset":36,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618355Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786915Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6b88c62fa6fb32dd93b835b3b6ea04b3","type":"PII","value":"0349 66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94301,"y":422.63},"width":18.928024,"height":10.0905,"page":126},{"topLeft":{"x":297.05,"y":422.63},"width":10.053986,"height":10.0905,"page":126}],"sectionNumber":1795,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618355Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786915Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2ef7d7ebed9f3104c91b5a67578b2538","type":"PII","value":"0192 49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94301,"y":531.11},"width":18.928024,"height":10.0905,"page":126},{"topLeft":{"x":297.05,"y":531.11},"width":10.053986,"height":10.0905,"page":126}],"sectionNumber":1788,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618355Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786915Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0b0ca3ef1c99b449b3ed734b0f2dd171","type":"PII","value":"0298 56","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94301,"y":469.07},"width":18.928024,"height":10.0905,"page":126},{"topLeft":{"x":297.05,"y":469.07},"width":10.053986,"height":10.0905,"page":126}],"sectionNumber":1792,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618355Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786915Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1333c3e3169ab6cc31db9da62584afc6","type":"PII","value":"9985 45","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94301,"y":608.9},"width":18.928024,"height":10.0905,"page":126},{"topLeft":{"x":297.05,"y":608.9},"width":10.053986,"height":10.0905,"page":126}],"sectionNumber":1783,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618355Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786916Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7113950f2d4fb60f414e8b9aade85706","type":"PII","value":"0947 26","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.543,"y":360.45},"width":18.928009,"height":10.0905,"page":127},{"topLeft":{"x":306.17,"y":360.45},"width":10.053986,"height":10.0905,"page":127}],"sectionNumber":1826,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618356Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786916Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5b50abbf2a5f700a069a05ddcc14ed87","type":"PII","value":"0619 33","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.543,"y":241.26001},"width":18.928009,"height":10.0905,"page":127},{"topLeft":{"x":306.17,"y":241.26001},"width":10.053986,"height":10.0905,"page":127}],"sectionNumber":1833,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618356Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786916Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9dfda0148c6c4c855cddf1b8666957b7","type":"PII","value":"0462 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.55798,"y":293.13},"width":18.928009,"height":10.0905,"page":127},{"topLeft":{"x":306.17,"y":293.13},"width":10.053986,"height":10.0905,"page":127}],"sectionNumber":1830,"textBefore":null,"textAfter":null,"comments":null,"startOffset":44,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618356Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786916Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ff8e995bde89fc41b004a6bf987e8ee4","type":"PII","value":"0349 66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.543,"y":480.59},"width":18.958008,"height":10.0905,"page":128},{"topLeft":{"x":313.03,"y":480.59},"width":10.053986,"height":10.0905,"page":128}],"sectionNumber":1855,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618356Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786917Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eadafb028e56225faa58284adf9ba66a","type":"PII","value":"0142 41","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.543,"y":635.9},"width":18.928009,"height":10.0905,"page":128},{"topLeft":{"x":313.03,"y":635.9},"width":10.053986,"height":10.0905,"page":128}],"sectionNumber":1845,"textBefore":null,"textAfter":null,"comments":null,"startOffset":36,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618356Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786917Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e086c757eb54f3ac582620419d43f972","type":"PII","value":"0298 56","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.543,"y":511.55},"width":18.928009,"height":10.0905,"page":128},{"topLeft":{"x":313.03,"y":511.55},"width":10.053986,"height":10.0905,"page":128}],"sectionNumber":1853,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618357Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786917Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fbf67ef41a902fe9550ec6faca7d6ffb","type":"PII","value":"0192 49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.543,"y":558.23},"width":18.928009,"height":10.0905,"page":128},{"topLeft":{"x":313.03,"y":558.23},"width":10.053986,"height":10.0905,"page":128}],"sectionNumber":1850,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618357Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786917Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3d96d0931770e33e588d73b08e0999fc","type":"PII","value":"0142 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.543,"y":620.42},"width":18.928009,"height":10.0905,"page":128},{"topLeft":{"x":313.03,"y":620.42},"width":10.053986,"height":10.0905,"page":128}],"sectionNumber":1846,"textBefore":null,"textAfter":null,"comments":null,"startOffset":36,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618357Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786917Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"11e987bb4bd42c14a3df913b02b76bc0","type":"PII","value":"37-49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":184.67328,"y":48.880005},"width":26.61673,"height":11.017679,"page":128}],"sectionNumber":1864,"textBefore":"SYN545974 accounted for ","textAfter":"% dose. At","comments":null,"startOffset":1995,"endOffset":2000,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618357Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786918Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0891e115a52589141c26a4c0ff7e748f","type":"PII","value":"0142 48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.543,"y":573.71},"width":18.928009,"height":10.0905,"page":128},{"topLeft":{"x":313.03,"y":573.71},"width":10.053986,"height":10.0905,"page":128}],"sectionNumber":1849,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618357Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786918Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de6544669ef9ce2703c50248dba4f27d","type":"CBI_author","value":"Allan G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":465.39694,"y":238.26001},"width":36.09616,"height":11.017679,"page":130}],"sectionNumber":1864,"textBefore":"Green M, and ","textAfter":", 2015) Guidelines:","comments":null,"startOffset":5190,"endOffset":5197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618358Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3be2784d029aa7a0bef128c5fb04472d","type":"CBI_author","value":"Hutton E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":356.28055,"y":238.26001},"width":41.119354,"height":11.017679,"page":130}],"sectionNumber":1864,"textBefore":"Wash (Tomlinson J, ","textAfter":", Green M,","comments":null,"startOffset":5167,"endOffset":5175,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618358Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f2e913e5495cf4359fabfa665dba2f0b","type":"CBI_author","value":"Green M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.95,"y":238.26001},"width":40.324524,"height":11.017679,"page":130}],"sectionNumber":1864,"textBefore":"J, Hutton E, ","textAfter":", and Allan","comments":null,"startOffset":5177,"endOffset":5184,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618358Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"50854d6075164616dbe0f04d2b302b13","type":"CBI_author","value":"Tomlinson J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":296.07944,"y":238.26001},"width":55.68109,"height":11.017679,"page":130}],"sectionNumber":1864,"textBefore":"Cage Wash (","textAfter":", Hutton E,","comments":null,"startOffset":5154,"endOffset":5165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618358Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"018aff46db1f89b16cab20219722741c","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":64.0,"y":265.0},"width":470.0,"height":448.0,"page":130}],"sectionNumber":1864,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618358Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9c593d52a7286ce33632a7769c6c9735","type":"CBI_address","value":"Syngenta Crop Protection","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":223.37,"y":122.82001},"width":94.03906,"height":10.0905,"page":131}],"sectionNumber":1866,"textBefore":null,"textAfter":null,"comments":null,"startOffset":42,"endOffset":66,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bed997bcd7cec510457b946a67dba0d8","type":"CBI_address","value":"Sequani Limited, Bromyard Road, Ledbury, Herefordshire, HR8 1LH, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":333.38272,"y":714.86},"width":178.59705,"height":10.526819,"page":131},{"topLeft":{"x":147.62,"y":703.34},"width":177.25229,"height":10.526819,"page":131}],"sectionNumber":1867,"textBefore":"Report Amendment 3. ","textAfter":". Sequani Limited","comments":null,"startOffset":134,"endOffset":213,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b9a4eaabba470820af82bb655bf1e09b","type":"CBI_address","value":"Sequani Limited","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":329.65903,"y":703.34},"width":68.27991,"height":10.526819,"page":131}],"sectionNumber":1867,"textBefore":"1LH, United Kingdom. ","textAfter":" Report No.","comments":null,"startOffset":215,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"88821ca1d7f8cd1fcb7855a57dbe2823","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"14 C]-SYN545974 at 10 mg/kg and 300 mg/kg (Continued)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":255.46931,"y":638.06},"width":82.64076,"height":11.017679,"page":131}],"sectionNumber":1864,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5262,"endOffset":5279,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"701708dd83312c9f4bdc069f1588ad80","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":307.97614,"y":691.82},"width":38.05127,"height":10.526819,"page":131}],"sectionNumber":1867,"textBefore":"September 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":294,"endOffset":302,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61836Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fef83babe004ad41c93d9bd609a6b60e","type":"CBI_author","value":"Penn L.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":209.81262,"y":726.02},"width":31.905884,"height":10.526819,"page":131}],"sectionNumber":1867,"textBefore":"Report: K-CA 5.1.1/09 ","textAfter":" (2015). SYN545974","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61836Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c67adec55603701adfc413e15895d16d","type":"hint_only","value":"Purity (%w/w) :","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":70.464,"y":83.70398},"width":63.58599,"height":10.018499,"page":131}],"sectionNumber":1866,"textBefore":null,"textAfter":null,"comments":null,"startOffset":131,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61836Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12e94be99962ef4c3c4651bd6221e049","type":"CBI_address","value":"Harlan Teklad, Italy","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Test Animals:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":485.04202,"y":477.23},"width":25.435028,"height":10.0905,"page":132},{"topLeft":{"x":223.13,"y":466.91},"width":48.89804,"height":10.0905,"page":132}],"sectionNumber":1870,"textBefore":"Diet (manufactured by ","textAfter":") supplied by","comments":null,"startOffset":1618,"endOffset":1638,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61836Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a401371cafb8be91f377b72aad94b1d","type":"CBI_address","value":"Harlan (UK) Limited, Shaw's Farm, Blackthorn, Bicester, Oxon, OX25 1TP, England","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Test Animals:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":325.98206,"y":466.91},"width":184.55515,"height":10.0905,"page":132},{"topLeft":{"x":223.13,"y":456.59},"width":147.9519,"height":10.0905,"page":132}],"sectionNumber":1870,"textBefore":"Italy) supplied by ","textAfter":" and mains","comments":null,"startOffset":1652,"endOffset":1731,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618361Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9fe55d1a4884541d9384698531996a0","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Test Animals:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":223.13,"y":381.21},"width":30.115005,"height":10.0905,"page":132}],"sectionNumber":1870,"textBefore":"retained within the ","textAfter":" archives. It","comments":null,"startOffset":2144,"endOffset":2151,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618361Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db7d247f060cae98e726cb65ba2008cb","type":"CBI_author","value":"Hay","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":330.68906,"y":423.23},"width":16.047974,"height":10.0905,"page":132}],"sectionNumber":1870,"textBefore":"animals as enrichment. ","textAfter":" was supplied","comments":null,"startOffset":1874,"endOffset":1877,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618361Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"96ca536d84ea56aa720f398961ceefe8","type":"PII","value":"46 750 150","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing Regime:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":287.69,"y":145.73999},"width":9.940002,"height":10.0905,"page":132},{"topLeft":{"x":365.59,"y":145.73999},"width":14.619995,"height":10.0905,"page":132},{"topLeft":{"x":456.34,"y":145.73999},"width":14.619995,"height":10.0905,"page":132}],"sectionNumber":1876,"textBefore":null,"textAfter":null,"comments":null,"startOffset":9,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618361Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786921Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c61a5846a6b270a77ca879f7b1975cd7","type":"PII","value":"42 300 60","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing Regime:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":287.69,"y":159.65997},"width":9.940002,"height":10.0905,"page":132},{"topLeft":{"x":365.59,"y":159.65997},"width":14.619995,"height":10.0905,"page":132},{"topLeft":{"x":458.62,"y":159.65997},"width":10.059998,"height":10.0905,"page":132}],"sectionNumber":1875,"textBefore":null,"textAfter":null,"comments":null,"startOffset":9,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618361Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786921Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e119876fca79dde0e58ebf3726b8184b","type":"PII","value":"50 1000 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing Regime:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":287.69,"y":131.58002},"width":9.940002,"height":10.0905,"page":132},{"topLeft":{"x":363.43,"y":131.58002},"width":19.044983,"height":10.0905,"page":132},{"topLeft":{"x":456.34,"y":131.58002},"width":14.619995,"height":10.0905,"page":132}],"sectionNumber":1877,"textBefore":null,"textAfter":null,"comments":null,"startOffset":9,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618362Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786921Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5ae54a27a31f20dddc3df8cfb35082c2","type":"CBI_address","value":"Wm Lillico & Son (Wonham Mill) Ltd, PO Box 35, Betchworth, Surrey, RH3 7YF, England","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Test Animals:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.562,"y":423.23},"width":78.28308,"height":10.0905,"page":132},{"topLeft":{"x":223.13,"y":412.77},"width":265.99612,"height":10.0905,"page":132}],"sectionNumber":1870,"textBefore":"was supplied by ","textAfter":".","comments":null,"startOffset":1894,"endOffset":1977,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618362Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ff30ff89b4e9545d2fe9249c083c756","type":"CBI_address","value":"Harlan Teklad","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Test Animals:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":284.97806,"y":477.23},"width":54.04895,"height":10.0905,"page":132}],"sectionNumber":1870,"textBefore":"A pelleted diet, ","textAfter":" 2930C Rabbit","comments":null,"startOffset":1569,"endOffset":1582,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618362Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ff7b83a79184d5786c0aecf4ca8c0900","type":"PII","value":"38 100 20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Dosing Regime:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":287.69,"y":172.73999},"width":9.940002,"height":10.0905,"page":132},{"topLeft":{"x":365.59,"y":172.73999},"width":14.619995,"height":10.0905,"page":132},{"topLeft":{"x":458.62,"y":172.73999},"width":10.059998,"height":10.0905,"page":132}],"sectionNumber":1874,"textBefore":null,"textAfter":null,"comments":null,"startOffset":9,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618362Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786922Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"984edd9d587ba67aa9c3429e5c17381b","type":"PII","value":"100 300 750 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-57: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 6 of Gestation in Female Rabbits Following Oral (Gavage) Administration of\nSYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.37,"y":656.78},"width":14.619995,"height":10.018499,"page":134},{"topLeft":{"x":299.81,"y":656.78},"width":14.619995,"height":10.018499,"page":134},{"topLeft":{"x":396.67,"y":656.78},"width":14.619995,"height":10.018499,"page":134},{"topLeft":{"x":478.42,"y":656.78},"width":19.044983,"height":10.018499,"page":134}],"sectionNumber":1884,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618362Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786922Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8382df78aa3884d819ded2fbaa492988","type":"PII","value":"314 471 800 681","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-58: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 13 of Gestation in Female Rabbits Following Oral (Gavage) Administration\nof SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":225.41,"y":115.140015},"width":14.619995,"height":10.0905,"page":134},{"topLeft":{"x":305.93,"y":115.140015},"width":14.619995,"height":10.0905,"page":134},{"topLeft":{"x":400.51,"y":115.140015},"width":14.619995,"height":10.0905,"page":134},{"topLeft":{"x":482.5,"y":115.140015},"width":14.619995,"height":10.0905,"page":134}],"sectionNumber":1914,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618363Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786923Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"433b22872072f28b94cf81f88187913f","type":"PII","value":"254 722 1010 1140","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-57: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 6 of Gestation in Female Rabbits Following Oral (Gavage) Administration of\nSYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.37,"y":510.11},"width":14.619995,"height":10.0905,"page":134},{"topLeft":{"x":299.81,"y":510.11},"width":14.619995,"height":10.0905,"page":134},{"topLeft":{"x":394.39,"y":510.11},"width":19.044983,"height":10.0905,"page":134},{"topLeft":{"x":478.42,"y":510.11},"width":19.044983,"height":10.0905,"page":134}],"sectionNumber":1895,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618363Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786923Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"939c16c6b3987a957ed7c0190d20c1e2","type":"PII","value":"100 300 750 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-58: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 13 of Gestation in Female Rabbits Following Oral (Gavage) Administration\nof SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":225.41,"y":291.57},"width":14.619995,"height":10.018499,"page":134},{"topLeft":{"x":305.93,"y":291.57},"width":14.619995,"height":10.018499,"page":134},{"topLeft":{"x":400.51,"y":291.57},"width":14.619995,"height":10.018499,"page":134},{"topLeft":{"x":480.34,"y":291.57},"width":19.044983,"height":10.018499,"page":134}],"sectionNumber":1902,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618363Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786923Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9826f8503a1004bbbdec3d3ae4c1c2a8","type":"PII","value":"344 722 1010 1140","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-57: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 6 of Gestation in Female Rabbits Following Oral (Gavage) Administration of\nSYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.37,"y":480.83},"width":14.619995,"height":10.0905,"page":134},{"topLeft":{"x":299.81,"y":480.83},"width":14.619995,"height":10.0905,"page":134},{"topLeft":{"x":394.39,"y":480.83},"width":19.044983,"height":10.0905,"page":134},{"topLeft":{"x":478.42,"y":480.83},"width":19.044983,"height":10.0905,"page":134}],"sectionNumber":1896,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618363Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786923Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cb30ce081f75b46be800a2811103d712","type":"PII","value":"290 471 800 681","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-58: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 13 of Gestation in Female Rabbits Following Oral (Gavage) Administration\nof SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":225.41,"y":133.97998},"width":14.619995,"height":10.0905,"page":134},{"topLeft":{"x":305.93,"y":133.97998},"width":14.619995,"height":10.0905,"page":134},{"topLeft":{"x":400.51,"y":133.97998},"width":14.619995,"height":10.0905,"page":134},{"topLeft":{"x":482.5,"y":133.97998},"width":14.619995,"height":10.0905,"page":134}],"sectionNumber":1913,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618363Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786923Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"947593ea3d2657973b37cc1b80e32e83","type":"PII","value":"111 76","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-59: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 27 of Gestation in Female Rabbits Following Oral (Gavage) Administration of\nSYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":284.09,"y":577.67},"width":14.619995,"height":10.0905,"page":135},{"topLeft":{"x":377.35,"y":577.67},"width":10.053986,"height":10.0905,"page":135}],"sectionNumber":1926,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618364Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786924Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"944dd1f59266d6911ada974aa6d46aa9","type":"PII","value":"758 2300","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-59: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 27 of Gestation in Female Rabbits Following Oral (Gavage) Administration of\nSYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.13,"y":429.59},"width":14.619995,"height":10.0905,"page":135},{"topLeft":{"x":282.89,"y":429.59},"width":19.044983,"height":10.0905,"page":135}],"sectionNumber":1935,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618364Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786924Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9a97e115606b7e190d455c1443211534","type":"PII","value":"111 75","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-59: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 27 of Gestation in Female Rabbits Following Oral (Gavage) Administration of\nSYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":284.09,"y":588.5},"width":14.619995,"height":10.0905,"page":135},{"topLeft":{"x":377.35,"y":588.5},"width":10.053986,"height":10.0905,"page":135}],"sectionNumber":1925,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618364Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786924Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0f72286db4a45e9d6c505be18dab164b","type":"PII","value":"12 61","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-59: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 27 of Gestation in Female Rabbits Following Oral (Gavage) Administration of\nSYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":126.86,"y":555.95},"width":10.059998,"height":10.0905,"page":135},{"topLeft":{"x":222.05,"y":555.95},"width":10.054001,"height":10.0905,"page":135}],"sectionNumber":1928,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618364Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786924Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7bb499e2d4808f3918986cf94baae23b","type":"PII","value":"1110 1560 1850 2050","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-59: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 27 of Gestation in Female Rabbits Following Oral (Gavage) Administration of\nSYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":220.97,"y":467.27},"width":19.044998,"height":10.0905,"page":135},{"topLeft":{"x":282.89,"y":467.27},"width":19.044983,"height":10.0905,"page":135},{"topLeft":{"x":376.75,"y":467.27},"width":19.044983,"height":10.0905,"page":135},{"topLeft":{"x":471.22,"y":467.27},"width":19.044983,"height":10.0905,"page":135}],"sectionNumber":1933,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618364Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786924Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ecd4aed4af741e059b704c394ea8186c","type":"PII","value":"118 102 116","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-59: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 27 of Gestation in Female Rabbits Following Oral (Gavage) Administration of\nSYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":284.09,"y":530.51},"width":14.619995,"height":10.0905,"page":135},{"topLeft":{"x":377.83,"y":530.51},"width":14.619995,"height":10.0905,"page":135},{"topLeft":{"x":473.38,"y":530.51},"width":14.619995,"height":10.0905,"page":135}],"sectionNumber":1930,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618365Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786925Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"89b4e201df583fa8e223546a3097cb8f","type":"PII","value":"102 79","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-59: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 27 of Gestation in Female Rabbits Following Oral (Gavage) Administration of\nSYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":377.83,"y":566.87},"width":14.619995,"height":10.0905,"page":135},{"topLeft":{"x":472.3,"y":566.87},"width":10.053986,"height":10.0905,"page":135}],"sectionNumber":1927,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618365Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786925Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"33c7f6ea39a58677af70c3c757c1f469","type":"PII","value":"1110 1560 1850 2050","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-59: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 27 of Gestation in Female Rabbits Following Oral (Gavage) Administration of\nSYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":220.97,"y":448.43},"width":19.044998,"height":10.0905,"page":135},{"topLeft":{"x":282.89,"y":448.43},"width":19.044983,"height":10.0905,"page":135},{"topLeft":{"x":376.75,"y":448.43},"width":19.044983,"height":10.0905,"page":135},{"topLeft":{"x":471.22,"y":448.43},"width":19.044983,"height":10.0905,"page":135}],"sectionNumber":1934,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618365Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786925Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0a9d3978159d93bc15f05623ae6b7518","type":"PII","value":"100 300 750 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1.1-59: Mean Blood Concentrations (ng/mL) and Mean Toxicokinetic Parameters of\nSYN545974 on Day 27 of Gestation in Female Rabbits Following Oral (Gavage) Administration of\nSYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.13,"y":620.66},"width":14.619995,"height":10.018499,"page":135},{"topLeft":{"x":284.09,"y":620.66},"width":14.619995,"height":10.018499,"page":135},{"topLeft":{"x":377.83,"y":620.66},"width":14.619995,"height":10.018499,"page":135},{"topLeft":{"x":471.22,"y":620.66},"width":19.044983,"height":10.018499,"page":135}],"sectionNumber":1922,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618365Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786925Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4b130c9fa4afe28c64a3f7c63a1fb40c","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":298.0,"y":312.0},"width":219.0,"height":131.0,"page":136}],"sectionNumber":1945,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618365Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"26ed10d4d7e1af70af743a53eb1db169","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":43.0,"y":310.0},"width":215.0,"height":133.0,"page":136}],"sectionNumber":1945,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618366Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8b1d772f82583ff2b0ad76e23081ed82","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":298.0,"y":174.0},"width":219.0,"height":132.0,"page":136}],"sectionNumber":1945,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618366Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1a6b624ddbaec93b4a7e8b1cf09b429e","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":534.0,"y":172.0},"width":216.0,"height":134.0,"page":136}],"sectionNumber":1945,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618366Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"65eb06411097289d4769df924a0be16c","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":43.0,"y":162.0},"width":225.0,"height":144.0,"page":136}],"sectionNumber":1945,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618366Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6de066cee8a9362710689e0b3ecbc6bc","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":534.0,"y":319.0},"width":226.0,"height":124.0,"page":136}],"sectionNumber":1945,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618366Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3454c919f19bbf8c845c5f6db9c3c809","type":"CBI_author","value":"Gehrke","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2-1: Summary of SYN545974 acute toxicity data, with classification endpoints according to\nRegulation (EC) No. 1272/2008","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":311.09,"y":179.10004},"width":27.42395,"height":10.0905,"page":137}],"sectionNumber":1955,"textBefore":null,"textAfter":" E, (2015)","comments":null,"startOffset":29,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618367Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b55a89b26b40788a7141cd826e949277","type":"CBI_author","value":"Petus – Árpásy M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2-1: Summary of SYN545974 acute toxicity data, with classification endpoints according to\nRegulation (EC) No. 1272/2008","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":295.85,"y":306.81},"width":65.645966,"height":10.0905,"page":137}],"sectionNumber":1949,"textBefore":null,"textAfter":", (2012)","comments":null,"startOffset":32,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618367Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"12ed63c93b780ee71488e129b7a077d7","type":"CBI_author","value":"Nagy K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2-1: Summary of SYN545974 acute toxicity data, with classification endpoints according to\nRegulation (EC) No. 1272/2008","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.11,"y":264.33002},"width":29.079987,"height":10.0905,"page":137}],"sectionNumber":1951,"textBefore":null,"textAfter":", (2013)","comments":null,"startOffset":33,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618367Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"300b9327fcc70b9382eb5a941ca87792","type":"CBI_author","value":"Penn L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":468.92944,"y":669.38},"width":32.58545,"height":11.017679,"page":137}],"sectionNumber":1946,"textBefore":"1000 mg/kg/day. (","textAfter":", 2015)","comments":null,"startOffset":352,"endOffset":358,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618368Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1369ef48d5b1b2bbe3426bb4bdd63ed1","type":"CBI_address","value":"CiToxLAB Hungary Ltd., H-8200 Veszprém, Szabadságpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.1. Oral","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.45978,"y":703.22},"width":184.10757,"height":10.526819,"page":138},{"topLeft":{"x":131.42,"y":691.7},"width":108.83824,"height":10.526819,"page":138}],"sectionNumber":1958,"textBefore":"and Down Procedure). ","textAfter":". Laboratory Report","comments":null,"startOffset":122,"endOffset":186,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618368Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4664d5822ac1a630a6d84177934a1402","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Under the conditions of this study, the acute oral median lethal dose (LD50) of the test item,\nSYN545974, was greater than 5000 mg/kg bw (limit dose) in female CRL:(WI) rats.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":381.30637,"y":291.69},"width":24.217133,"height":10.929359,"page":138}],"sectionNumber":1963,"textBefore":"dose) in female ","textAfter":":(WI) rats. MATERIALS","comments":null,"startOffset":160,"endOffset":163,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618368Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf1183a0066adf949a56ff7df54ad202","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.1. Oral","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":214.94452,"y":680.18},"width":38.04126,"height":10.526819,"page":138}],"sectionNumber":1958,"textBefore":"December 2012. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":265,"endOffset":273,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618368Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be420c8f35617a495b63669ed93f6f85","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.2.1. Oral","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":215.96306,"y":615.02},"width":82.63124,"height":11.017679,"page":138}],"sectionNumber":1960,"textBefore":null,"textAfter":null,"comments":null,"startOffset":141,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618369Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8aaa4cac7e062ea8db4874868053ef7b","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of this study, the acute oral median lethal dose (LD50) of the test item,\nSYN545974, was greater than 5000 mg/kg bw (limit dose) in female CRL:(WI) rats.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":170.82},"width":28.467995,"height":10.018499,"page":138}],"sectionNumber":1962,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618369Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7485bec79720578e82b1ae4152037526","type":"CBI_author","value":"Petus – Árpásy M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.2.1. Oral","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.61263,"y":714.74},"width":75.416214,"height":10.526819,"page":138}],"sectionNumber":1958,"textBefore":"Report: K-CA 5.2.1/01 ","textAfter":" (2012). SYN545974","comments":null,"startOffset":22,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618369Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c4f603032892c952051335c881bda14e","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":268.26672,"y":528.35},"width":22.384491,"height":11.017679,"page":138}],"sectionNumber":1961,"textBefore":"study, 3 female ","textAfter":":(WI) rats were","comments":null,"startOffset":60,"endOffset":63,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618369Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"22d6e3173428a219ff1aa70de1ff3fed","type":"PII","value":"174-189","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: 0.5% Carboxymethyl cellulose","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":328.93396,"y":681.5},"width":31.107025,"height":10.0905,"page":139}],"sectionNumber":1964,"textBefore":"weeks old. /","textAfter":" g","comments":null,"startOffset":97,"endOffset":104,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61837Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786927Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"780ce8a867a19eb8249a78e9d6e4edbf","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":268.31216,"y":421.19},"width":22.384491,"height":11.017679,"page":139}],"sectionNumber":1966,"textBefore":"study, 3 female ","textAfter":":(WI) rats were","comments":null,"startOffset":162,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61837Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1ed4d79078c41c0b0dd332baf673a976","type":"CBI_address","value":"ssniff Spezialdiäten GmbH, D-59494 Soest Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: 0.5% Carboxymethyl cellulose","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":354.14297,"y":600.26},"width":157.04102,"height":10.0905,"page":139},{"topLeft":{"x":206.93,"y":590.06},"width":34.525024,"height":10.0905,"page":139}],"sectionNumber":1964,"textBefore":"maintenance\" produced by ","textAfter":" ad libitum","comments":null,"startOffset":408,"endOffset":456,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61837Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c78c1fd681493de63c370b8b828e9da7","type":"PII","value":"15-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: 0.5% Carboxymethyl cellulose","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":254.76501,"y":535.07},"width":22.218964,"height":10.0905,"page":139}],"sectionNumber":1964,"textBefore":"% Air changes: ","textAfter":" air exchanges/hour","comments":null,"startOffset":630,"endOffset":635,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61837Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786928Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5a27acc7a52dbce3a03ce82898073489","type":"CBI_author","value":"Westat, May","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":267.3394,"y":108.17999},"width":57.944336,"height":11.017679,"page":139}],"sectionNumber":1966,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1857,"endOffset":1868,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618371Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"920fd98f8972633bb591764e1aec5d1e","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: 0.5% Carboxymethyl cellulose","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":206.93,"y":696.5},"width":18.505005,"height":10.0905,"page":139}],"sectionNumber":1964,"textBefore":null,"textAfter":":(WI)","comments":null,"startOffset":33,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618371Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ceeaecd68226f376534333723837a1c","type":"PII","value":"98-192","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.2.2. Dermal","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":338.13},"width":32.079994,"height":11.017679,"page":140}],"sectionNumber":1976,"textBefore":"Toxicity EPA 712-C- ","textAfter":" (1998); Commission","comments":null,"startOffset":208,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618371Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786928Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ac97655a4d955e33f2206c3329477184","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":266.89777,"y":226.85999},"width":22.384491,"height":11.017679,"page":140}],"sectionNumber":1977,"textBefore":"and 5 female ","textAfter":":(WI) Wistar rats","comments":null,"startOffset":49,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618371Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"17197c538fc3e2bc302e3574cdcc5ba8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.2. Dermal","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":406.24985,"y":403.53},"width":38.160828,"height":10.526819,"page":140}],"sectionNumber":1974,"textBefore":"January 2013. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":238,"endOffset":246,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618371Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"85a7ada385d2112222b2276219de8e83","type":"PII","value":"6453 5000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: mortality data","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":100.94,"y":707.9},"width":19.044998,"height":10.0905,"page":140},{"topLeft":{"x":211.61,"y":707.9},"width":19.044998,"height":10.0905,"page":140}],"sectionNumber":1969,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618372Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786929Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d1d263b6a471bd241caabea7f5c756c1","type":"CBI_author","value":"Petus – Árpásy M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"mortality data","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":421.25943,"y":488.87},"width":80.21512,"height":11.017679,"page":140}],"sectionNumber":1973,"textBefore":"CRL:(WI) rats. (","textAfter":", 2012)","comments":null,"startOffset":595,"endOffset":611,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618372Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"327fd38d95e4bb9f78829ee39d752ed5","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"mortality data","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":394.04547,"y":538.19},"width":22.406555,"height":11.017679,"page":140}],"sectionNumber":1973,"textBefore":"dose) in female ","textAfter":":(WI) rats. (Petus","comments":null,"startOffset":579,"endOffset":582,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618372Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b026fdc3caf57c55a1e04c03a845e037","type":"PII","value":"6454 5000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: mortality data","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":100.94,"y":692.9},"width":19.044998,"height":10.0905,"page":140},{"topLeft":{"x":211.61,"y":692.9},"width":19.044998,"height":10.0905,"page":140}],"sectionNumber":1970,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618372Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786929Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1b94798ab2d4c65dd503ed64814976e4","type":"PII","value":"6455 5000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: mortality data","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":100.94,"y":677.78},"width":19.044998,"height":10.0905,"page":140},{"topLeft":{"x":211.61,"y":677.78},"width":19.044998,"height":10.0905,"page":140}],"sectionNumber":1971,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618372Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78693Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"20ed8c550d1cb50050a1ae66729038a1","type":"CBI_address","value":"CiToxLAB Hungary Ltd. H-8200 Veszprém, Szabadságpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.2. Dermal","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":156.48897,"y":415.05},"width":291.81567,"height":10.526819,"page":140}],"sectionNumber":1974,"textBefore":"Study in Rats. ","textAfter":". Laboratory Report","comments":null,"startOffset":97,"endOffset":160,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ab58f9876f7796e5848cee11e1a4e9ce","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.2.2. Dermal","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":215.96306,"y":313.52997},"width":82.552475,"height":11.017679,"page":140}],"sectionNumber":1976,"textBefore":null,"textAfter":null,"comments":null,"startOffset":318,"endOffset":335,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"98db242ef911f50fc5eae3c44283f8df","type":"CBI_author","value":"Petus – Árpásy M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.2.2. Dermal","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.01263,"y":426.59},"width":75.4162,"height":10.526819,"page":140}],"sectionNumber":1974,"textBefore":"Report: K-CA 5.2.2/01 ","textAfter":" (2013). SYN545974","comments":null,"startOffset":22,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618373Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f7d124d9195a31ce968b1abb3e4b2437","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"The median lethal dose of SYN545974 after a single dermal administration was found to be greater\nthan 5000 mg/kg bw in male and female CRL:(WI) Wistar rats.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":253.7065,"y":640.82},"width":24.217117,"height":10.929359,"page":141}],"sectionNumber":1987,"textBefore":"male and female ","textAfter":":(WI) Wistar rats.","comments":null,"startOffset":135,"endOffset":138,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b7196bb0deebbea959acef9916c89b6c","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: None","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":206.93,"y":375.81},"width":18.505005,"height":10.0905,"page":141}],"sectionNumber":1988,"textBefore":null,"textAfter":":(WI)","comments":null,"startOffset":33,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"76d54d31d452d47ba17124ec5d2b74d4","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: None","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":335.81006,"y":299.37},"width":34.524963,"height":10.0905,"page":141}],"sectionNumber":1988,"textBefore":"1, 73494 Rosenberger, ","textAfter":" Bedding was","comments":null,"startOffset":415,"endOffset":422,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f7c0e34cd243f68451db1c0cfeb4717","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":353.2382,"y":81.400024},"width":22.384491,"height":11.017679,"page":141}],"sectionNumber":1990,"textBefore":"and 5 female ","textAfter":":(WI) rats, followed","comments":null,"startOffset":239,"endOffset":242,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618374Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"640e962bdc20f1303b69d27c19585839","type":"CBI_author","value":"J. Rettenmaier","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: None","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":351.02896,"y":309.69},"width":52.92105,"height":10.0905,"page":141}],"sectionNumber":1988,"textBefore":null,"textAfter":null,"comments":null,"startOffset":348,"endOffset":362,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618374Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6b0fb64a355aac9ac202f56e6e57d747","type":"CBI_address","value":"ssniff Spezialdiäten GmbH, D-59494, Soest, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: None","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":305.23697,"y":248.46002},"width":196.94699,"height":10.0905,"page":141}],"sectionNumber":1988,"textBefore":"maintenance\" produced by ","textAfter":" ad libitum","comments":null,"startOffset":615,"endOffset":665,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618374Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b35afda5914e619eda30eb617aeb14b5","type":"PII","value":"601 7197","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: None","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":285.17,"y":238.26001},"width":34.740997,"height":10.0905,"page":141}],"sectionNumber":1988,"textBefore":"libitum (Lot number: ","textAfter":", expiry date:","comments":null,"startOffset":690,"endOffset":698,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618374Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786931Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"732e617b5984267041c009da4b6de61c","type":"CBI_author","value":"Rosenberger","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: None","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":285.923,"y":299.37},"width":46.34204,"height":10.0905,"page":141}],"sectionNumber":1988,"textBefore":"(Holzmühle 1, 73494 ","textAfter":", Germany Bedding","comments":null,"startOffset":402,"endOffset":413,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618375Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2662ad6fdb7b0636114e7858d61e3d08","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: The median lethal dose of SYN545974 after a single dermal administration was found to be greater\nthan 5000 mg/kg bw in male and female CRL:(WI) Wistar rats.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":519.95},"width":28.467995,"height":10.018499,"page":141}],"sectionNumber":1981,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618375Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b05285d61b40b9c7bdf343213228b1b6","type":"PII","value":"15-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: None","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":254.76501,"y":183.29999},"width":22.218964,"height":10.0905,"page":141}],"sectionNumber":1988,"textBefore":"% Air changes: ","textAfter":" air exchanges/hour","comments":null,"startOffset":863,"endOffset":868,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618375Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786931Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d2ea832db177358f035cdd962b6748a0","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":451.96548,"y":465.83},"width":22.384491,"height":11.017679,"page":142}],"sectionNumber":1996,"textBefore":"to SYN545974 in ","textAfter":":(WI) rats. Table","comments":null,"startOffset":106,"endOffset":109,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618375Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1acb07dee96293ed219cc88b5b4122f2","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":301.9972,"y":213.77997},"width":22.384491,"height":11.017679,"page":142}],"sectionNumber":1996,"textBefore":"male and female ","textAfter":":(WI) Wistar rats.","comments":null,"startOffset":793,"endOffset":796,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618375Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0d225971baac1d9fe03ae2bcf484c7f3","type":"CBI_author","value":"Petus – Árpásy M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":421.25943,"y":164.46002},"width":80.197845,"height":11.017679,"page":142}],"sectionNumber":1996,"textBefore":"Wistar rats. (","textAfter":", 2013)","comments":null,"startOffset":816,"endOffset":832,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"129f07a37adff329eaacf957426b2238","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.3. Inhalation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":389.20007,"y":678.62},"width":38.05127,"height":10.526819,"page":143}],"sectionNumber":1997,"textBefore":"January 2013. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":240,"endOffset":248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c2dd26129b58549cf5665fd9f7f06339","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":341.9036,"y":464.63},"width":22.384491,"height":11.017679,"page":143}],"sectionNumber":2000,"textBefore":"and 5 female) ","textAfter":": (WI) Wistar","comments":null,"startOffset":385,"endOffset":388,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a0ec3915a493c6eaf0d2d3a2d7d21780","type":"CBI_address","value":"CiToxLAB Hungary Ltd., H-8200 Veszprém, Szabadságpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.3. Inhalation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":174.46423,"y":690.14},"width":294.33307,"height":10.526819,"page":143}],"sectionNumber":1997,"textBefore":"in the Rat. ","textAfter":". Report number","comments":null,"startOffset":106,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8338d672532b84f67d2a76e1c0b38122","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.2.3. Inhalation","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":215.96306,"y":601.22},"width":82.552475,"height":11.017679,"page":143}],"sectionNumber":1999,"textBefore":null,"textAfter":null,"comments":null,"startOffset":215,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8faabb883e626e320393d93ba431544b","type":"CBI_author","value":"Nagy K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.2.3. Inhalation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.00218,"y":701.54},"width":34.555237,"height":10.526819,"page":143}],"sectionNumber":1997,"textBefore":"Report: K-CA 5.2.3/01 ","textAfter":" (2013). SYN545974","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618377Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"deb12f0bc1c3713ca43f39d4f0ae5030","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":217.24707,"y":540.23},"width":24.195038,"height":10.929359,"page":144}],"sectionNumber":2000,"textBefore":"of SYN545974, in ","textAfter":": (WI) Wistar","comments":null,"startOffset":3618,"endOffset":3621,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618377Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"57c9ac31a8a9b2e6cac7a8306f75a4ed","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":406.77},"width":28.467995,"height":10.018499,"page":144}],"sectionNumber":2001,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618377Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8daf9e4897fbf241f993f00dfdac2740","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: None","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":189.17,"y":263.25},"width":18.505005,"height":10.0905,"page":144}],"sectionNumber":2003,"textBefore":null,"textAfter":": (WI) Wistar","comments":null,"startOffset":33,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618377Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eadfbc2b3062f9b3490465dfc0f13bf9","type":"PII","value":"15-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: None","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.00502,"y":101.82001},"width":22.218979,"height":10.0905,"page":144}],"sectionNumber":2003,"textBefore":"% Air changes: ","textAfter":" air exchanges/hour","comments":null,"startOffset":574,"endOffset":579,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618377Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786933Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"56c55ae20e64bec986fcd4bdbfcbd1a0","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":326.40173,"y":665.66},"width":22.384491,"height":11.017679,"page":144}],"sectionNumber":2000,"textBefore":"of SYN545974 to ","textAfter":": (WI) Wistar","comments":null,"startOffset":2979,"endOffset":2982,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618378Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"35cc8d6d1c0f23df5ecea556401a3593","type":"CBI_address","value":"ssniff","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: None","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":189.17,"y":167.10004},"width":21.007004,"height":10.0905,"page":144}],"sectionNumber":2003,"textBefore":null,"textAfter":" SM R/M-Z+H","comments":null,"startOffset":363,"endOffset":369,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618378Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea1662aacefdf96c697fc4480eae216d","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":102.17999},"width":41.892143,"height":11.017679,"page":145}],"sectionNumber":2005,"textBefore":"GmbH, Bad Homburg, ","textAfter":"). Such devices","comments":null,"startOffset":3588,"endOffset":3595,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618378Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8fafce1dfdf9a7276a2c392f810dfcb2","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":288.84525,"y":515.75},"width":42.024628,"height":11.017679,"page":145}],"sectionNumber":2005,"textBefore":"GmbH, Bad Homburg, ","textAfter":"). This system","comments":null,"startOffset":1207,"endOffset":1214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618378Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80a494e29f191863af8fba373e87bb6d","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":112.072784,"y":578.39},"width":42.00258,"height":11.017679,"page":145}],"sectionNumber":2005,"textBefore":"GmbH, Bad Homburg, ","textAfter":") located at","comments":null,"startOffset":864,"endOffset":871,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618378Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c52d50a38deb57e7a36c15c7047b267","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":362.77206,"y":214.73999},"width":41.89215,"height":11.017679,"page":145}],"sectionNumber":2005,"textBefore":"– D-37586 Dassel, ","textAfter":"). The difference","comments":null,"startOffset":3030,"endOffset":3037,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618379Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"898140acd4c90426a9e7de8f898466e3","type":"CBI_author","value":"Mercer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":295.27118,"y":114.900024},"width":32.74005,"height":11.017679,"page":145}],"sectionNumber":2005,"textBefore":"7-stage impactor of ","textAfter":" style (TSE","comments":null,"startOffset":3543,"endOffset":3549,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618379Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a39e6b7cb8b8be13535175c2c465463f","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.43277,"y":628.34},"width":22.892334,"height":11.017679,"page":145}],"sectionNumber":2005,"textBefore":"material as supplied. ","textAfter":" to use,","comments":null,"startOffset":685,"endOffset":690,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618379Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dda5d319d84430c18953051fffa7c2ea","type":"CBI_author","value":"Pauluhn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.96182,"y":277.40997},"width":37.111816,"height":11.017679,"page":145}],"sectionNumber":2005,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2663,"endOffset":2670,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618379Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a6e91dc21ba559dc1887dd244b5fc1be","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Summary of acute study test atmosphere characteristics","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":235.25,"y":290.37},"width":23.035858,"height":11.017679,"page":146}],"sectionNumber":2024,"textBefore":"assignment and treatment: ","textAfter":" to the","comments":null,"startOffset":88,"endOffset":93,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61838Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99d2ad25e0dff596d663dd0e235b3078","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":652.22},"width":41.892143,"height":11.017679,"page":146}],"sectionNumber":2005,"textBefore":"GmbH, Bad Homburg, ","textAfter":"), the Mass","comments":null,"startOffset":4305,"endOffset":4312,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61838Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df55d60f96a26fb268af061d8d246d95","type":"PII","value":"30-70","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Summary of acute study test atmosphere characteristics","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":328.39,"y":318.09003},"width":22.053986,"height":10.0905,"page":146}],"sectionNumber":2022,"textBefore":null,"textAfter":"% (room","comments":null,"startOffset":9,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61838Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786935Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7978e5e78e615b60365c6716d10efc33","type":"PII","value":"44 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Summary of acute study test atmosphere characteristics","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.172,"y":469.07},"width":9.937012,"height":10.0905,"page":146},{"topLeft":{"x":486.22,"y":469.07},"width":14.607971,"height":10.0905,"page":146}],"sectionNumber":2012,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61838Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786935Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4516683605f5dcb21c10d3c547324359","type":"PII","value":"07-2014","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Summary of acute study test atmosphere characteristics","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":105.945595,"y":127.26001},"width":37.634407,"height":11.017679,"page":146}],"sectionNumber":2024,"textBefore":"11H15 8; Expiry: ","textAfter":"; Produced by","comments":null,"startOffset":1071,"endOffset":1078,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61838Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786935Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0e4f7164cde35c204de1e78625d07bce","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.2.4. Skin irritation","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":215.96306,"y":102.17999},"width":82.552475,"height":11.017679,"page":147}],"sectionNumber":2028,"textBefore":null,"textAfter":null,"comments":null,"startOffset":165,"endOffset":182,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618381Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"364a7c370e0ff96ec98db856b624469b","type":"PII","value":"11-14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":397.97076,"y":615.74},"width":26.819214,"height":11.017679,"page":147}],"sectionNumber":2025,"textBefore":"female on days ","textAfter":", but was","comments":null,"startOffset":759,"endOffset":764,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618381Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786935Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cc4bf5252011eb93f8ddfaa824fd82c0","type":"CBI_author","value":"Nagy K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":465.92944,"y":278.01},"width":35.367523,"height":11.017679,"page":147}],"sectionNumber":2025,"textBefore":"5.11 mg/L. (","textAfter":", 2013)","comments":null,"startOffset":2476,"endOffset":2482,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618381Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f68a8f5721d527e005c5cebf73767193","type":"PII","value":"10-14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":134.25214,"y":615.74},"width":26.60788,"height":11.017679,"page":147}],"sectionNumber":2025,"textBefore":"female on days ","textAfter":" and fur","comments":null,"startOffset":701,"endOffset":706,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618381Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786936Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"50f06d021118c960840e2309636619d9","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.4. Skin irritation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.2299,"y":179.58002},"width":38.160828,"height":10.526819,"page":147}],"sectionNumber":2026,"textBefore":"November 2012. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":240,"endOffset":248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618381Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d331668a0e92963919d347cff51a40d5","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":383.7221,"y":440.51},"width":22.384491,"height":11.017679,"page":147}],"sectionNumber":2025,"textBefore":"of SYN545974 to ","textAfter":": (WI) Wistar","comments":null,"startOffset":1691,"endOffset":1694,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618382Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"19fdf04448b9799700b0ad093944e6c9","type":"CBI_author","value":"Török-Bathó M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.2.4. Skin irritation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.13,"y":202.5},"width":66.43851,"height":10.526819,"page":147}],"sectionNumber":2026,"textBefore":"Report: K-CA 5.2.4/01 ","textAfter":" (2012). SYN545974","comments":null,"startOffset":22,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618382Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a6568b101a835e58c8cbb80e72033541","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.64082,"y":315.33002},"width":22.384476,"height":11.017679,"page":147}],"sectionNumber":2025,"textBefore":"of SYN545974, in ","textAfter":": (WI) Wistar","comments":null,"startOffset":2392,"endOffset":2395,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618382Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e3536b00620a072163f6b39796edd4d","type":"CBI_address","value":"CiToxLAB Hungary Ltd. H-8200 Veszprém, Szabadságpuszta Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.4. Skin irritation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":169.30746,"y":191.10004},"width":289.19684,"height":10.526819,"page":147}],"sectionNumber":2026,"textBefore":"Study in Rabbits. ","textAfter":". Laboratory Report","comments":null,"startOffset":99,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618382Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ed6d650b7a9d16c737b78cdf9eabe64","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: According to the Draize classification criteria SYN545974 is considered to be “Not-Irritant” to\nrabbit skin (P.I.I. = 0.00).","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":432.71},"width":28.467995,"height":10.018499,"page":148}],"sectionNumber":2030,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618382Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"080d81816b28978896248f53b73738f6","type":"PII","value":"38-78","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: None","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":228.254,"y":160.14001},"width":22.093002,"height":10.0905,"page":148}],"sectionNumber":2032,"textBefore":"17.5-22.0 °C Humidity: ","textAfter":" % Air","comments":null,"startOffset":439,"endOffset":444,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618383Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786937Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"580766c3db676a6ec5663ac8c35e6237","type":"CBI_address","value":"S&K-Lap Kft.2173 Kartal, Császár út 135, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: None","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":189.05,"y":258.33002},"width":189.16911,"height":10.0905,"page":148}],"sectionNumber":2032,"textBefore":null,"textAfter":null,"comments":null,"startOffset":105,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618383Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e749e548d12d77071e9a5f799245185","type":"PII","value":"15-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: None","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":236.88503,"y":147.77997},"width":22.218979,"height":10.0905,"page":148}],"sectionNumber":2032,"textBefore":"% Air changes: ","textAfter":" air exchanges/hour","comments":null,"startOffset":460,"endOffset":465,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618383Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786937Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ad901a824b64aa03f1a37d7bb1978c20","type":"PII","value":"2061 2060 2008 2061 2060","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.4-1: Individual and mean skin irritation scores of SYN545974 according to the Draize\nscheme","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":216.41,"y":147.06},"width":19.044998,"height":10.0905,"page":149},{"topLeft":{"x":273.77,"y":147.06},"width":19.044983,"height":10.0905,"page":149},{"topLeft":{"x":331.03,"y":147.06},"width":19.044983,"height":10.0905,"page":149},{"topLeft":{"x":388.27,"y":147.06},"width":19.044983,"height":10.0905,"page":149},{"topLeft":{"x":445.54,"y":147.06},"width":19.044983,"height":10.0905,"page":149}],"sectionNumber":2036,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618383Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786937Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de14100de50f3664d1c8a290611112f0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.5. Eye irritation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":389.75888,"y":561.47},"width":37.94171,"height":10.526819,"page":150}],"sectionNumber":2048,"textBefore":"November 2012. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":238,"endOffset":246,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618384Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"141a52cb8605a08ab887916c4e40cd43","type":"CBI_author","value":"Kay","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"SYN545974 was graded as a mild irritant (Class 4 on a 1 to 8 scale) to the rabbit eye according to\nthe modified Kay and Calandra classification system.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":125.8728,"y":184.73999},"width":20.55185,"height":10.929359,"page":150}],"sectionNumber":2054,"textBefore":"to the modified ","textAfter":" and Calandra","comments":null,"startOffset":112,"endOffset":115,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618384Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee52dd2cf44d249ce48cdd83323e79e6","type":"PII","value":"152 2004","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.2.5. Eye irritation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":295.76743,"y":508.79},"width":42.25641,"height":11.01771,"page":150}],"sectionNumber":2050,"textBefore":"2004/73/EC B.5 (L ","textAfter":" 29th April)","comments":null,"startOffset":166,"endOffset":174,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618384Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786938Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ea36ecfca0741b8f76d491bb6938daad","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.2.5. Eye irritation","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":215.96306,"y":484.07},"width":82.552475,"height":11.017679,"page":150}],"sectionNumber":2050,"textBefore":null,"textAfter":null,"comments":null,"startOffset":217,"endOffset":234,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618384Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b6b9af901c9f417772f5a5ddab8eb603","type":"CBI_address","value":"CiToxLAB Hungary Ltd. H-8200 Veszprém, Szabadságpuszta Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.5. Eye irritation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":131.9,"y":572.99},"width":289.17426,"height":10.526819,"page":150}],"sectionNumber":2048,"textBefore":"Study in Rabbits. ","textAfter":". Laboratory Report","comments":null,"startOffset":97,"endOffset":159,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618384Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3cba667557bb9c2874e7823b5ec24abe","type":"CBI_author","value":"Class","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"SYN545974 was graded as a mild irritant (Class 4 on a 1 to 8 scale) to the rabbit eye according to\nthe modified Kay and Calandra classification system.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.77457,"y":197.46002},"width":26.038696,"height":10.929359,"page":150}],"sectionNumber":2054,"textBefore":"mild irritant (","textAfter":" 4 on","comments":null,"startOffset":41,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618385Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb9b19d5368ec4b43bc06e55b7e5091d","type":"CBI_author","value":"Calandra","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"SYN545974 was graded as a mild irritant (Class 4 on a 1 to 8 scale) to the rabbit eye according to\nthe modified Kay and Calandra classification system.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":168.70801,"y":184.73999},"width":45.623703,"height":10.929359,"page":150}],"sectionNumber":2054,"textBefore":"modified Kay and ","textAfter":" classification system.","comments":null,"startOffset":120,"endOffset":128,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618385Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5217288e6ab738f1de241394449269bb","type":"CBI_author","value":"Török – Bathó M,","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.77945,"y":672.02},"width":80.57028,"height":11.017679,"page":150}],"sectionNumber":2047,"textBefore":"= 0.00). (","textAfter":" 2012)","comments":null,"startOffset":1038,"endOffset":1054,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618385Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"170adf93342a6d2dd0f10cb6be933e99","type":"CBI_author","value":"Török-Bathó M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.2.5. Eye irritation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":194.09264,"y":584.51},"width":66.55586,"height":10.526819,"page":150}],"sectionNumber":2048,"textBefore":"Report: K-CA 5.2.5/01 ","textAfter":" (2012a). SYN545974","comments":null,"startOffset":22,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618385Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bba03b411a4504a83d80057dc77ea26d","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: SYN545974 was graded as a mild irritant (Class 4 on a 1 to 8 scale) to the rabbit eye according to\nthe modified Kay and Calandra classification system.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":656.54},"width":28.467995,"height":10.018499,"page":151}],"sectionNumber":2052,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618385Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bef24a2e1e0dfc36d2edd66089855899","type":"PII","value":"15-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: SYN545974 was graded as a mild irritant (Class 4 on a 1 to 8 scale) to the rabbit eye according to\nthe modified Kay and Calandra classification system.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":254.76501,"y":371.61},"width":22.218964,"height":10.0905,"page":151}],"sectionNumber":2053,"textBefore":"% Air changes: ","textAfter":" air exchanges/hour","comments":null,"startOffset":491,"endOffset":496,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618386Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78694Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f78c3db865616b85c01c28dcf548a322","type":"CBI_author","value":"Draize J H","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":342.25684,"y":81.880005},"width":51.519073,"height":11.017679,"page":151}],"sectionNumber":2055,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1366,"endOffset":1376,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618386Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b661000d3ebe79930251657ca6140634","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.6. Skin sensitization","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":375.98853,"y":183.06},"width":38.05127,"height":10.526819,"page":152}],"sectionNumber":2066,"textBefore":"January 2013. Unpublished. ","textAfter":" Fiole No.","comments":null,"startOffset":231,"endOffset":239,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618386Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ed2f4377e06989cad685c7da7a7b7cc","type":"PII","value":"2067 2063 2062 2067 2063","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.5-1: Eye irritation scores of SYN545974 according to the Draize scheme","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":349.75,"y":518.63},"width":145.07498,"height":10.0905,"page":152}],"sectionNumber":2058,"textBefore":null,"textAfter":null,"comments":null,"startOffset":29,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618386Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786941Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f3454d3e2b16dd3524a33fcf3b47066c","type":"CBI_address","value":"CiToxLAB Hungary Ltd. H-8200 Veszprém, Szabadságpuszta Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.6. Skin sensitization","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":132.98,"y":194.58002},"width":289.299,"height":10.526819,"page":152}],"sectionNumber":2066,"textBefore":"in the Mouse. ","textAfter":". Laboratory Report","comments":null,"startOffset":91,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618387Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59a821eac0c6f8e7cabcd8647cb17170","type":"PII","value":"2063 2062","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.5-1: Eye irritation scores of SYN545974 according to the Draize scheme","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":475.78,"y":518.63},"width":51.085052,"height":10.0905,"page":152}],"sectionNumber":2058,"textBefore":null,"textAfter":null,"comments":null,"startOffset":64,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618387Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786941Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"85d6b24afc218c56ac5057cb2b8f839a","type":"CBI_author","value":"Hargitai J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.2.6. Skin sensitization","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":195.28218,"y":205.97998},"width":42.47342,"height":10.526819,"page":152}],"sectionNumber":2066,"textBefore":"Report: K-CA 5.2.6/01 ","textAfter":" (2013). SYN545974","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618387Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"57d152215017072a260f5a9f40be43f8","type":"CBI_author","value":"Kay","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":180.07921,"y":317.73004},"width":19.44786,"height":11.017679,"page":152}],"sectionNumber":2065,"textBefore":"to the modified ","textAfter":" and Calandra","comments":null,"startOffset":1236,"endOffset":1239,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618387Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8539d20938004c027788519cd9a4371","type":"CBI_author","value":"Török-Bathó M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.17944,"y":293.01},"width":70.36072,"height":11.017679,"page":152}],"sectionNumber":2065,"textBefore":"classification system. (","textAfter":", 2012a)","comments":null,"startOffset":1277,"endOffset":1290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618387Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ee552c1bde4d6a1d473d55dd1a2eb0d","type":"PII","value":"03-197","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.2.6. Skin sensitization","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.77,"y":117.65997},"width":32.200012,"height":11.017679,"page":152}],"sectionNumber":2068,"textBefore":"Sensitization“, EPA 712-C-","textAfter":", March 2003","comments":null,"startOffset":245,"endOffset":251,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618388Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786941Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7128fc6c0bca7abe3d53c1d7646eae47","type":"PII","value":"2067 2063 2062 2067 2063","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.5-1: Eye irritation scores of SYN545974 according to the Draize scheme","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":169.1,"y":518.63},"width":138.83499,"height":10.0905,"page":152}],"sectionNumber":2058,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618388Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786942Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3f14f1e09997f1efdea5be95e330923d","type":"PII","value":"2062 2067 2063 2062 2067","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.5-1: Eye irritation scores of SYN545974 according to the Draize scheme","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.01,"y":518.63},"width":139.78499,"height":10.0905,"page":152}],"sectionNumber":2058,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618388Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786942Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0ebce3b78546df08087897d28f3c0528","type":"CBI_author","value":"Calandra","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":219.88947,"y":317.73004},"width":40.69986,"height":11.017679,"page":152}],"sectionNumber":2065,"textBefore":"modified Kay and ","textAfter":" classification system.","comments":null,"startOffset":1244,"endOffset":1252,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618388Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b63570a75580a7a8cf03cc392ede5cb","type":"CBI_author","value":"Class","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":339.91284,"y":330.33},"width":24.82431,"height":11.017679,"page":152}],"sectionNumber":2065,"textBefore":"mild irritant (","textAfter":" 4 on","comments":null,"startOffset":1165,"endOffset":1170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618388Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7099f121f07cdd930b60ada10daa52db","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.2.6. Skin sensitization","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":215.96306,"y":92.94403},"width":82.552475,"height":11.017679,"page":152}],"sectionNumber":2068,"textBefore":null,"textAfter":null,"comments":null,"startOffset":294,"endOffset":311,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618388Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf188fc0a488140876b515dc7ea72b74","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the present assay, SYN545974, when tested in a suitable vehicle, was shown\nto have no skin sensitisation potential (non-sensitizer) in the Local Lymph Node Assay.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":232.85999},"width":28.467995,"height":10.018499,"page":153}],"sectionNumber":2070,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618389Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"40d5cfb1021d183aa93f0a7fce7b7243","type":"PII","value":"15-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the conditions of the present assay, SYN545974, when tested in a suitable vehicle, was shown\nto have no skin sensitisation potential (non-sensitizer) in the Local Lymph Node Assay.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":264.605,"y":667.46},"width":22.218964,"height":10.0905,"page":154}],"sectionNumber":2072,"textBefore":"70% Air changes: ","textAfter":" air exchange/hour","comments":null,"startOffset":336,"endOffset":341,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618389Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786942Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"77ffe68c0048aa7240261a78a0099f86","type":"CBI_address","value":"ssniff","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the present assay, SYN545974, when tested in a suitable vehicle, was shown\nto have no skin sensitisation potential (non-sensitizer) in the Local Lymph Node Assay.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":216.77,"y":720.62},"width":21.007004,"height":10.0905,"page":154}],"sectionNumber":2072,"textBefore":null,"textAfter":" SM R/M-Z+H","comments":null,"startOffset":121,"endOffset":127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618389Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be82eeaa1d296a41874d1d56afe7d020","type":"CBI_address","value":"Eurofins BioPharma","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.7. Phototoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":361.89},"width":82.7218,"height":10.526819,"page":156}],"sectionNumber":2111,"textBefore":"NRU Phototoxicity Test. ","textAfter":", Product Testing","comments":null,"startOffset":88,"endOffset":106,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d5f4bef8aa8251e9a46a291d37a7e56c","type":"CBI_address","value":"82152 Planegg","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.7. Phototoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":431.6641,"y":361.89},"width":60.531036,"height":10.526819,"page":156}],"sectionNumber":2111,"textBefore":"GmbH, Behringstrasse 6/8, ","textAfter":", Germany. Laboratory","comments":null,"startOffset":157,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"acc94ea24cdd85f584106eefcfb2f023","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.7. Phototoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":350.37},"width":38.12091,"height":10.526819,"page":156}],"sectionNumber":2111,"textBefore":"6/8, 82152 Planegg, ","textAfter":". Laboratory Report","comments":null,"startOffset":172,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f469e80f4d41b7df996a0e90e6ddb3f0","type":"CBI_author","value":"Gehrke H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.2.7. Phototoxicity","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.25,"y":373.41},"width":42.463486,"height":10.526819,"page":156}],"sectionNumber":2111,"textBefore":"Report: K-CA 5.2.7/01 ","textAfter":" (2015). SYN545974:","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61839Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"13004353e2aa933559058689e2ed374c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.2.7. Phototoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":438.33734,"y":350.37},"width":38.05127,"height":10.526819,"page":156}],"sectionNumber":2111,"textBefore":"September 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":242,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1cf4440cee7a3e3923c41050870f9db","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.2.7. Phototoxicity","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.56978,"y":263.37},"width":82.552475,"height":11.017679,"page":156}],"sectionNumber":2113,"textBefore":null,"textAfter":null,"comments":null,"startOffset":160,"endOffset":177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618391Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"73008b11bcab0ac09b3719e7b3ee3447","type":"CBI_author","value":"Hargitai J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"substance (-Hexylcinnamaldehyde)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":457.40945,"y":456.95},"width":44.02292,"height":11.017679,"page":156}],"sectionNumber":2110,"textBefore":"Node Assay. (","textAfter":", 2013)","comments":null,"startOffset":429,"endOffset":439,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618391Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0e25566aa10649f5e166fceba7ad0ac3","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: SYN545974 is classified as “non phototoxic”.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":589.7},"width":28.467995,"height":10.018499,"page":157}],"sectionNumber":2115,"textBefore":null,"textAfter":null,"comments":null,"startOffset":118,"endOffset":125,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618391Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2dfa30e5323d9bb2587ffa5dfd431c8f","type":"CBI_address","value":"Syngenta Crop Protection","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: SYN545974 is classified as “non phototoxic”.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.85,"y":602.78},"width":93.99704,"height":10.0905,"page":157}],"sectionNumber":2115,"textBefore":null,"textAfter":null,"comments":null,"startOffset":93,"endOffset":117,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618391Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4bb824a4f67685c589f0feeb89c59b24","type":"PII","value":"(18-22","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":313.27835,"y":308.73004},"width":30.391632,"height":11.017679,"page":158}],"sectionNumber":2117,"textBefore":"CO2, 37±1°C) overnight ","textAfter":" hours). Following","comments":null,"startOffset":3637,"endOffset":3643,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618391Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786944Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8eb112f190143f7fe47780fb1d44cec3","type":"CBI_author","value":"Holzhütter","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Interpretation of results:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":459.73868,"y":95.70398},"width":50.01758,"height":10.929359,"page":159}],"sectionNumber":2119,"textBefore":"(Peters B. and ","textAfter":" HG, 2002","comments":null,"startOffset":217,"endOffset":227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40512938a2d8d3e36715c142608ec540","type":"CBI_author","value":"Peters","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Interpretation of results:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.15,"y":95.70398},"width":29.019531,"height":10.929359,"page":159}],"sectionNumber":2119,"textBefore":"2.0 Software (","textAfter":" B. and","comments":null,"startOffset":203,"endOffset":209,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3cf9621187d41ad19cc32f2d876dd4f4","type":"PII","value":"678 101","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":260.73004},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":294.29,"y":260.73004},"width":14.607971,"height":10.0905,"page":160}],"sectionNumber":2134,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618392Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786944Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ff340b9cb33f59ec45a9a70741c643b0","type":"PII","value":"653 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":216.18},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":494.02,"y":216.18},"width":14.607971,"height":10.0905,"page":160}],"sectionNumber":2137,"textBefore":null,"textAfter":null,"comments":null,"startOffset":40,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618392Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786945Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7bc84e70fab5b31e4501367cdaa0c755","type":"PII","value":"663 99","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":275.61},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":296.57,"y":275.61},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2133,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618392Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786945Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2fcf49d9b96b9178ad6a8e64f2bc6e95","type":"PII","value":"697 102","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":379.53},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":294.29,"y":379.53},"width":14.607971,"height":10.0905,"page":160}],"sectionNumber":2126,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618393Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786945Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cfb0590caafe646976eece5257c33d36","type":"PII","value":"669 98","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":394.41},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":296.57,"y":394.41},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2125,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618393Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786945Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1749f70c4143fa35ab7f74f23807a49a","type":"PII","value":"667 101","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":349.89},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":494.02,"y":349.89},"width":14.607971,"height":10.0905,"page":160}],"sectionNumber":2128,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618393Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786945Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9fa0504ef1944cfc461c341f7da6fb05","type":"CBI_author","value":"Holzhütter","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REFERENCES:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":129.21794,"y":131.22003},"width":47.964172,"height":11.017679,"page":160}],"sectionNumber":2140,"textBefore":"Peters B. and ","textAfter":" HG (2002),","comments":null,"startOffset":26,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618393Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["46c127bdeacc447cccfec5cf17e4dc28"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fde9a20c7a8da37abf2e9e3d9ca5bb51","type":"PII","value":"251 36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":438.95},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":296.57,"y":438.95},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2122,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618393Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786946Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"acfb2a17b3cc816f00abef73b1b5170a","type":"PII","value":"607 92","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":394.41},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":496.3,"y":394.41},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2125,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618394Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786946Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"35d6b92849baa39b4a3948e98839d92d","type":"PII","value":"639 97","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":260.73004},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":496.3,"y":260.73004},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2134,"textBefore":null,"textAfter":null,"comments":null,"startOffset":40,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618394Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786946Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ca5f20b918b7f1c5ce5935de12e451d6","type":"PII","value":"112 17","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":438.95},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":496.3,"y":438.95},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2122,"textBefore":null,"textAfter":null,"comments":null,"startOffset":37,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618394Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786946Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ad598c1fc20b4559a1621842a9e17472","type":"PII","value":"656 98","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":216.18},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":296.57,"y":216.18},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2137,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618394Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786946Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a553ff5f35214294ae9a9955d8f7c4fd","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REFERENCES:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":155.58002},"width":74.9128,"height":10.929359,"page":160}],"sectionNumber":2140,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":10,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618394Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b4e8d1b066388fe0bf9a7d80e9c84244","type":"PII","value":"686 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":335.01},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":294.29,"y":335.01},"width":14.607971,"height":10.0905,"page":160}],"sectionNumber":2129,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618395Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786946Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"041eca967325df442b6977e1778988a6","type":"PII","value":"430 65","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":409.29},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":496.3,"y":409.29},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2124,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618395Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786947Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4b7ea577bf7ef636c77ff5b9f92993ec","type":"PII","value":"676 101","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":231.06},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":294.29,"y":231.06},"width":14.607971,"height":10.0905,"page":160}],"sectionNumber":2136,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618395Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786947Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"68860ac4b57f91e2d1af88b7289bee41","type":"PII","value":"327 49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":424.19},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":496.3,"y":424.19},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2123,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618395Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786947Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"754f02b2bbdbf79a0c58acdd262757f0","type":"PII","value":"692 103","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":245.94},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":294.29,"y":245.94},"width":14.607971,"height":10.0905,"page":160}],"sectionNumber":2135,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618395Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786947Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"13a62395144c6cb8487dd847bb6c8ce6","type":"PII","value":"681 99","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":349.89},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":296.57,"y":349.89},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2128,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618395Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786947Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"383676bed0d4db8b674c1a0c5d8eb87e","type":"CBI_author","value":"Peters","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REFERENCES:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":131.22003},"width":27.959694,"height":11.017679,"page":160}],"sectionNumber":2140,"textBefore":"REFERENCES: ","textAfter":" B. and","comments":null,"startOffset":12,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618396Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["46c127bdeacc447cccfec5cf17e4dc28"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51fac4b009717b76d311b89ad5177efd","type":"PII","value":"697 102","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":364.77},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":294.29,"y":364.77},"width":14.607971,"height":10.0905,"page":160}],"sectionNumber":2127,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618396Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786948Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9a02077777af39c243876d24fd5d3d23","type":"PII","value":"669 101","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":335.01},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":494.02,"y":335.01},"width":14.607971,"height":10.0905,"page":160}],"sectionNumber":2129,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618396Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786948Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"46c127bdeacc447cccfec5cf17e4dc28","type":"published_information","value":"ATLA","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REFERENCES:","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":188.21,"y":105.900024},"width":26.691162,"height":11.0232,"page":160}],"sectionNumber":2140,"textBefore":null,"textAfter":null,"comments":null,"startOffset":234,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618396Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8b0683f23dbd9fd0f7368b293b1fcc64","type":"PII","value":"685 104","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":379.53},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":494.02,"y":379.53},"width":14.607971,"height":10.0905,"page":160}],"sectionNumber":2126,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618396Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786948Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5c6a3dccc1b693101d90f39f9ac6ef26","type":"PII","value":"656 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":231.06},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":494.02,"y":231.06},"width":14.607971,"height":10.0905,"page":160}],"sectionNumber":2136,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618397Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786948Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b86f974fd4e874331e1b1f1dafa30b9c","type":"PII","value":"668 101","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":364.77},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":494.02,"y":364.77},"width":14.607971,"height":10.0905,"page":160}],"sectionNumber":2127,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618397Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786949Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1e579e708843a1864f002af4b2f555a1","type":"PII","value":"482 70","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":409.29},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":296.57,"y":409.29},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2124,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618397Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786949Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fb35461a653f6090bdc426f57606909d","type":"PII","value":"415-432","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REFERENCES:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":249.76999,"y":105.900024},"width":37.47998,"height":11.017679,"page":160}],"sectionNumber":2140,"textBefore":"ATLA 30, pp. ","textAfter":". Bundesinstitut für","comments":null,"startOffset":247,"endOffset":254,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618397Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786949Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d7c99c741c3e905bee84b48f045e5b0e","type":"PII","value":"461 68","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":290.49},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":296.57,"y":290.49},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618397Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786949Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4a29a5ee1ee48a08b2320af7e9956abf","type":"PII","value":"653 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":245.94},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":494.02,"y":245.94},"width":14.607971,"height":10.0905,"page":160}],"sectionNumber":2135,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618398Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786949Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d7be2ce1286b039cde251fb9976e63f2","type":"PII","value":"630 96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":275.61},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":496.3,"y":275.61},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2133,"textBefore":null,"textAfter":null,"comments":null,"startOffset":39,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618398Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78695Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d392517388ec2932f0c7ccaf3712ac84","type":"PII","value":"103 15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.212,"y":290.49},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":496.3,"y":290.49},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":39,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618398Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78695Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"57d0ba36ce755778230a4878f14253dd","type":"PII","value":"373 54","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.2.7-1: Mean OD540 and cell viability (%) with and without UVA irradiation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.31201,"y":424.19},"width":14.490997,"height":10.0905,"page":160},{"topLeft":{"x":296.57,"y":424.19},"width":10.053986,"height":10.0905,"page":160}],"sectionNumber":2123,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618398Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78695Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"678faf04d0d1d7c15c7b8391230072c1","type":"PII","value":"(40-43","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.3. SHORT-TERM TOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.92192,"y":492.47},"width":30.32808,"height":11.017679,"page":161}],"sectionNumber":2152,"textBefore":"be 500 ppm ","textAfter":" mg/kg/day). In","comments":null,"startOffset":782,"endOffset":788,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618398Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78695Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2cedacdfc60827adab889e66c0ebcb65","type":"CBI_author","value":"Gehrke H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REFERENCES:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":457.40945,"y":715.58},"width":44.10019,"height":11.017679,"page":161}],"sectionNumber":2140,"textBefore":"get started“. (","textAfter":", 2015)","comments":null,"startOffset":567,"endOffset":575,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618399Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["46c127bdeacc447cccfec5cf17e4dc28"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e83174a68bd635ee51a0d7e574cbe1b","type":"PII","value":"(630-846","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.3. SHORT-TERM TOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":425.35635,"y":71.67999},"width":41.58362,"height":11.017679,"page":161}],"sectionNumber":2152,"textBefore":"of 4000 ppm ","textAfter":" mg/kg/day) in","comments":null,"startOffset":3526,"endOffset":3534,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618399Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786951Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ce46e34568c9d34bc2c92747c7c6e4ff","type":"PII","value":"(587-727","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.3. SHORT-TERM TOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":306.21115,"y":379.29},"width":41.53882,"height":11.017679,"page":161}],"sectionNumber":2152,"textBefore":"of 8000 ppm ","textAfter":" mg/kg/day) in","comments":null,"startOffset":1559,"endOffset":1567,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618399Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786951Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"683d7f57136418198973bb866ba2ff61","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.3-1: SYN545974: Summary of Short Term Toxicity Studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":69.504,"y":585.11},"width":18.504997,"height":10.0905,"page":163}],"sectionNumber":2143,"textBefore":"Robertson B (2015) ","textAfter":" Report No.","comments":null,"startOffset":40,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618399Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d231e770f076ba591cb9ee4e0f84d1b1","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.3-1: SYN545974: Summary of Short Term Toxicity Studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":95.874,"y":371.13},"width":18.504997,"height":10.0905,"page":163}],"sectionNumber":2145,"textBefore":"Shearer J (2015) ","textAfter":" Report No.","comments":null,"startOffset":30,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6184Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"61182a9b8bb03dfaf43aea3994179b2f","type":"CBI_author","value":"Robertson B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3-1: SYN545974: Summary of Short Term Toxicity Studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":607.82},"width":46.341995,"height":10.0905,"page":163}],"sectionNumber":2143,"textBefore":"Day Shearer J ","textAfter":" (2015) CRL","comments":null,"startOffset":21,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6184Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ec1f3e7d143546ba344eb5a3965fff74","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.3.1. Oral 28-day study","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":312.1729,"y":327.81},"width":38.160828,"height":10.526819,"page":164}],"sectionNumber":2153,"textBefore":"December 2012. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":222,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618401Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70b69d219b4a6b41c040b240be260289","type":"PII","value":"3050 712","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.3.1. Oral 28-day study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":459.1662,"y":286.52997},"width":44.188416,"height":11.017679,"page":164}],"sectionNumber":2155,"textBefore":"Guidelines, OPPTS 870.","textAfter":"-C-00- 366, July","comments":null,"startOffset":208,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618401Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786952Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aa8d2e71683f20100c3ef7b874840ba9","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":186.17328,"y":137.34003},"width":19.337448,"height":11.017679,"page":164}],"sectionNumber":2170,"textBefore":"day toxicity study ","textAfter":" Wistar rats","comments":null,"startOffset":45,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618402Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"63d06e869aea867527ea45a5f69f1b2d","type":"CBI_author","value":"Sieber M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3-1: SYN545974: Summary of Short Term Toxicity Studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":623.42},"width":34.300003,"height":10.0905,"page":164}],"sectionNumber":2150,"textBefore":"Rat 28-Day Dermal ","textAfter":" (2013) Harlan","comments":null,"startOffset":18,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618402Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"019615300ff63052f8fe8f6ac7af468b","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":303.672,"y":137.34003},"width":19.337433,"height":11.017679,"page":164}],"sectionNumber":2170,"textBefore":"Wistar rats (CrL:WI(","textAfter":")) rats were","comments":null,"startOffset":69,"endOffset":72,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618402Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c551e5d5082dfe6922fe3737ff1f2c3","type":"CBI_address","value":"Charles River, Tranent, Edinburgh, EH33 2NE, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.3.1. Oral 28-day study","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":166.54759,"y":339.33},"width":208.07854,"height":10.526819,"page":164}],"sectionNumber":2153,"textBefore":"Study in Rats. ","textAfter":". Laboratory Report","comments":null,"startOffset":102,"endOffset":149,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618402Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ec76cdca2f718a4c877c19800438c7d7","type":"CBI_author","value":"Blunt H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3-1: SYN545974: Summary of Short Term Toxicity Studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":704.3},"width":29.791,"height":10.0905,"page":164}],"sectionNumber":2149,"textBefore":"Dog 1 year ","textAfter":" (2015a) Sequani","comments":null,"startOffset":11,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a6dfd79cfe079e4982f3ff2bc5b77c56","type":"CBI_author","value":"Strepka C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.3.1. Oral 28-day study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":195.88219,"y":350.85},"width":42.951538,"height":10.526819,"page":164}],"sectionNumber":2153,"textBefore":"Report: K-CA 5.3.1/01 ","textAfter":" (2012). SYN545974,","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618403Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"881b4004507fcbbe4ca421b3ce784bcd","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.3-1: SYN545974: Summary of Short Term Toxicity Studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":69.504,"y":681.62},"width":30.114998,"height":10.0905,"page":164}],"sectionNumber":2149,"textBefore":"Blunt H (2015a) ","textAfter":" Report Number:","comments":null,"startOffset":27,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ee94e7118df9384ae13ec544b1d1908","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.3.1. Oral 28-day study","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":365.93045,"y":249.18},"width":84.694214,"height":11.017679,"page":164}],"sectionNumber":2155,"textBefore":null,"textAfter":null,"comments":null,"startOffset":335,"endOffset":352,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"22d156ce3c403744d6fa56aaa370cd33","type":"CBI_author","value":"Blank","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":111.38,"y":486.35},"width":22.527992,"height":10.0905,"page":165}],"sectionNumber":2160,"textBefore":null,"textAfter":" diet","comments":null,"startOffset":2,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a85e02b9adfe1a382ed6cf7285f5c644","type":"PII","value":"152-191","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.87006,"y":514.79},"width":31.13095,"height":10.0905,"page":166}],"sectionNumber":2172,"textBefore":"198-230 g (males), ","textAfter":" g (females)","comments":null,"startOffset":113,"endOffset":120,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618404Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786954Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"093f47767920e0fbc6f02b8322514cfa","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":656.54},"width":28.467995,"height":10.018499,"page":166}],"sectionNumber":2171,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618404Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"16f3031f309c678555fc99aed79018cb","type":"PII","value":"43-64","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.454,"y":380.85},"width":22.093002,"height":10.0905,"page":166}],"sectionNumber":2172,"textBefore":"Temperature: 21-22°C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":633,"endOffset":638,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618404Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786954Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"689ec3a2072f954f20fc3cfdd8566df0","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":301.32806,"y":529.91},"width":15.948975,"height":10.0905,"page":166}],"sectionNumber":2172,"textBefore":"Wistar rats (CrL:WI(","textAfter":"))","comments":null,"startOffset":57,"endOffset":60,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618405Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9dfe4c8f2fd58f54dbdace7758bb1e90","type":"PII","value":"198-230","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.44803,"y":514.79},"width":31.092957,"height":10.0905,"page":166}],"sectionNumber":2172,"textBefore":"7 weeks / ","textAfter":" g (males),","comments":null,"startOffset":94,"endOffset":101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618405Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786955Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1cd9942c5a3ad5db5b056b91bf124707","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.58347,"y":279.21002},"width":19.337433,"height":11.017679,"page":166}],"sectionNumber":2174,"textBefore":"Wistar rats (CrL:WI(","textAfter":")) rats were","comments":null,"startOffset":160,"endOffset":163,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618405Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c070b9348bf14c5b8ba9558434f2543c","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":208.25,"y":529.91},"width":15.940002,"height":10.0905,"page":166}],"sectionNumber":2172,"textBefore":null,"textAfter":" Wistar rats","comments":null,"startOffset":33,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618405Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d486cc93f9b215eb90c80abce9690c3c","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":304.8668,"y":279.21002},"width":19.337433,"height":11.017679,"page":166}],"sectionNumber":2174,"textBefore":"male and female ","textAfter":" Wistar rats","comments":null,"startOffset":136,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618406Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b4c78e3e96c02ca785411eb31b5a237","type":"CBI_author","value":"Blank","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":451.31},"width":27.37455,"height":11.017679,"page":167}],"sectionNumber":2193,"textBefore":"to the concentrations. ","textAfter":" diet i.e.","comments":null,"startOffset":718,"endOffset":723,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618406Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2df0349becdca412ef2110af17120014","type":"CBI_author","value":"Blank","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":111.38,"y":752.06},"width":22.527992,"height":10.0905,"page":167}],"sectionNumber":2179,"textBefore":null,"textAfter":" diet","comments":null,"startOffset":2,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618406Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"90fc18025031e9bd42f8fe915b87accf","type":"PII","value":"28 317 291 308 306","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":274.76996},"width":10.059998,"height":10.0905,"page":171},{"topLeft":{"x":115.94,"y":274.76996},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":159.38,"y":274.76996},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":203.09,"y":274.76996},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":246.53,"y":274.76996},"width":14.619995,"height":10.0905,"page":171}],"sectionNumber":2229,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618406Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786956Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d95eb6ceb77e9b111791df839aa94e14","type":"PII","value":"178 176 169 164 161","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":334.03,"y":350.25},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":377.47,"y":350.25},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":421.03,"y":350.25},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":464.62,"y":350.25},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":503.38,"y":350.25},"width":14.619995,"height":10.0905,"page":171}],"sectionNumber":2224,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618407Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786956Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1b05cd7ebd699cefcacbf08c6906077a","type":"PII","value":"177 174 173 170 164","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":334.03,"y":335.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":377.47,"y":335.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":421.03,"y":335.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":464.62,"y":335.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":505.54,"y":335.13},"width":14.620026,"height":10.0905,"page":171}],"sectionNumber":2225,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618407Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786956Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3877422b3f978e04d3a52c4cecaf0cd6","type":"PII","value":"176 172 174 175 175","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":334.03,"y":365.37},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":377.47,"y":365.37},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":421.03,"y":365.37},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":464.62,"y":365.37},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":505.54,"y":365.37},"width":14.620026,"height":10.0905,"page":171}],"sectionNumber":2223,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618407Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786956Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f060c08d6be3b4af6ea0020a04688bc0","type":"PII","value":"500 4000 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":159.38,"y":380.25},"width":14.619995,"height":10.018499,"page":171},{"topLeft":{"x":200.93,"y":380.25},"width":19.044998,"height":10.018499,"page":171},{"topLeft":{"x":244.37,"y":380.25},"width":19.045013,"height":10.018499,"page":171},{"topLeft":{"x":285.89,"y":380.25},"width":23.598969,"height":10.018499,"page":171}],"sectionNumber":2222,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618407Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786957Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aca7934210ad700ee71c8e62950ec7a8","type":"PII","value":"219 210 214 218 211","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":115.94,"y":365.37},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":159.38,"y":365.37},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":203.09,"y":365.37},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":246.53,"y":365.37},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":290.33,"y":365.37},"width":14.619995,"height":10.0905,"page":171}],"sectionNumber":2223,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618407Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786957Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f81ecc8f62f7b6393cd6424f546ae5fb","type":"PII","value":"191 190 188 191 185","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":334.03,"y":305.01},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":377.47,"y":305.01},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":421.03,"y":305.01},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":464.62,"y":305.01},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":505.54,"y":305.01},"width":14.620026,"height":10.0905,"page":171}],"sectionNumber":2227,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618408Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786957Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"98c858a24dbaf8a184459a9de8850080","type":"PII","value":"202 198 196 197 193","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":334.03,"y":289.89},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":377.47,"y":289.89},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":421.03,"y":289.89},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":464.62,"y":289.89},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":505.54,"y":289.89},"width":14.620026,"height":10.0905,"page":171}],"sectionNumber":2228,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618408Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786957Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"efab7c2db42dba90a7a7929530047f35","type":"PII","value":"239 229 233 236 218","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":115.94,"y":320.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":159.38,"y":320.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":203.09,"y":320.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":246.53,"y":320.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":288.17,"y":320.13},"width":14.619995,"height":10.0905,"page":171}],"sectionNumber":2226,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618408Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786957Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"600365d48f0562cff23eb059d83e4808","type":"CBI_author","value":"Whitney","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Investigations post mortem:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":192.89,"y":627.02},"width":39.12114,"height":11.017679,"page":171}],"sectionNumber":2219,"textBefore":"using a Mann-","textAfter":" U-test.","comments":null,"startOffset":3369,"endOffset":3376,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618408Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c394406f5197d8a2b7402cfc175f5f1e","type":"PII","value":"224 216 216 214 206","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":115.94,"y":350.25},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":159.38,"y":350.25},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":203.09,"y":350.25},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":246.53,"y":350.25},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":285.89,"y":350.25},"width":14.607971,"height":10.0905,"page":171}],"sectionNumber":2224,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618409Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786958Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bd2610c14dea9bf890c41ad5b2f89ee4","type":"CBI_author","value":"Mann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Investigations post mortem:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":163.6296,"y":627.02},"width":26.690094,"height":11.017679,"page":171}],"sectionNumber":2219,"textBefore":"analysed using a ","textAfter":"-Whitney U-test.","comments":null,"startOffset":3364,"endOffset":3368,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618409Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"94de14e5814c17189f224f9735aa6b00","type":"PII","value":"231 223 226 226 212","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":115.94,"y":335.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":159.38,"y":335.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":203.09,"y":335.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":246.53,"y":335.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":285.89,"y":335.13},"width":14.607971,"height":10.0905,"page":171}],"sectionNumber":2225,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618409Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786958Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ad75b8527d7d4260f90f3b75875d3c8f","type":"PII","value":"11 267 254 263 264","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":305.01},"width":10.059998,"height":10.0905,"page":171},{"topLeft":{"x":115.94,"y":305.01},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":159.38,"y":305.01},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":203.09,"y":305.01},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":246.53,"y":305.01},"width":14.619995,"height":10.0905,"page":171}],"sectionNumber":2227,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618409Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786958Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c09cbca5ac74760cff955beb6c0fe78b","type":"PII","value":"500 4000 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":377.47,"y":380.25},"width":14.619995,"height":10.018499,"page":171},{"topLeft":{"x":418.87,"y":380.25},"width":19.044983,"height":10.018499,"page":171},{"topLeft":{"x":462.46,"y":380.25},"width":19.044983,"height":10.018499,"page":171},{"topLeft":{"x":501.1,"y":380.25},"width":23.59903,"height":10.018499,"page":171}],"sectionNumber":2222,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618409Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786959Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0c3eaa5e743b71a41b8cc688af56fe7b","type":"PII","value":"18 290 273 286 287","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":289.89},"width":10.059998,"height":10.0905,"page":171},{"topLeft":{"x":115.94,"y":289.89},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":159.38,"y":289.89},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":203.09,"y":289.89},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":246.53,"y":289.89},"width":14.619995,"height":10.0905,"page":171}],"sectionNumber":2228,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61841Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786959Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eb5ebb3e32219b95f5dd03c9b734d767","type":"PII","value":"182 179 178 175 169","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":334.03,"y":320.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":377.47,"y":320.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":421.03,"y":320.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":464.62,"y":320.13},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":505.54,"y":320.13},"width":14.620026,"height":10.0905,"page":171}],"sectionNumber":2226,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61841Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786959Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"400a67b96e58baa4387e4599df016d68","type":"PII","value":"214 210 208 203 201","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-1: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":334.03,"y":274.76996},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":377.47,"y":274.76996},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":421.03,"y":274.76996},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":464.62,"y":274.76996},"width":14.619995,"height":10.0905,"page":171},{"topLeft":{"x":505.54,"y":274.76996},"width":14.620026,"height":10.0905,"page":171}],"sectionNumber":2229,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61841Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78696Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d596fad696b5e2efde4789907961a2cd","type":"PII","value":"230 218","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-2: Intergroup comparison of body weights and body weight gain (g) satellite study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":152.06,"y":440.63},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":255.77,"y":440.39},"width":14.607986,"height":10.018499,"page":172}],"sectionNumber":2237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61841Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78696Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5bc8c7825d7a3636eba3bb7462b0ae63","type":"PII","value":"500 4000 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-3: Intergroup comparison of food consumption (g/animal/day) toxicity study- selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.74,"y":182.22003},"width":14.619995,"height":10.018499,"page":172},{"topLeft":{"x":202.85,"y":182.22003},"width":19.044998,"height":10.018499,"page":172},{"topLeft":{"x":245.09,"y":182.22003},"width":19.045013,"height":10.018499,"page":172},{"topLeft":{"x":285.17,"y":182.22003},"width":23.598969,"height":10.018499,"page":172}],"sectionNumber":2247,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61841Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78696Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c581e3d86f865d8c1d5d8acdb611b3df","type":"PII","value":"223 224 170 172","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-2: Intergroup comparison of body weights and body weight gain (g) satellite study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":152.06,"y":455.75},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":257.93,"y":455.75},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":363.79,"y":455.75},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":467.02,"y":455.75},"width":14.619995,"height":10.0905,"page":172}],"sectionNumber":2236,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618411Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78696Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"344b0becfeb192920f267949cbf126cc","type":"PII","value":"172 161","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-2: Intergroup comparison of body weights and body weight gain (g) satellite study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":363.79,"y":440.63},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":462.58,"y":440.39},"width":14.607971,"height":10.018499,"page":172}],"sectionNumber":2237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618411Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78696Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6aaaa6eea25e5fb236e220c6eb1bd22d","type":"PII","value":"257 248 178 179","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-2: Intergroup comparison of body weights and body weight gain (g) satellite study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":152.06,"y":395.37},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":257.93,"y":395.37},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":363.79,"y":395.37},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":467.02,"y":395.37},"width":14.619995,"height":10.0905,"page":172}],"sectionNumber":2240,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618411Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786961Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3a1412074f1c14885861b39fea4ed8c3","type":"PII","value":"245 237 175 175","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-2: Intergroup comparison of body weights and body weight gain (g) satellite study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":152.06,"y":410.37},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":257.93,"y":410.37},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":363.79,"y":410.37},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":467.02,"y":410.37},"width":14.619995,"height":10.0905,"page":172}],"sectionNumber":2239,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618411Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786961Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6e5577abcd771797ccf0176ddf202aa4","type":"PII","value":"234 226 176 166","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-2: Intergroup comparison of body weights and body weight gain (g) satellite study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":152.06,"y":425.51},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":257.93,"y":425.51},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":363.79,"y":425.51},"width":14.619995,"height":10.0905,"page":172},{"topLeft":{"x":464.86,"y":425.27},"width":14.607971,"height":10.018499,"page":172}],"sectionNumber":2238,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618411Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786961Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c037d214628bb198f4d29f83015ea422","type":"PII","value":"500 4000 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-3: Intergroup comparison of food consumption (g/animal/day) toxicity study- selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.35,"y":182.22003},"width":14.619995,"height":10.018499,"page":172},{"topLeft":{"x":414.43,"y":182.22003},"width":19.044983,"height":10.018499,"page":172},{"topLeft":{"x":456.7,"y":182.22003},"width":19.044983,"height":10.018499,"page":172},{"topLeft":{"x":498.1,"y":182.22003},"width":23.59903,"height":10.018499,"page":172}],"sectionNumber":2247,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618412Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786961Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"90a661881236193a40b288d449558fb2","type":"formula","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.011764706,0.43529412,0.9882353],"positions":[{"topLeft":{"x":64.0,"y":608.0},"width":482.0,"height":157.0,"page":172}],"sectionNumber":2315,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618412Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3ab4b22aab0357a5f58cbb2888327dd4","type":"PII","value":"500 4000 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-6: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":383.35,"y":261.09003},"width":14.619995,"height":10.0905,"page":173},{"topLeft":{"x":420.07,"y":261.09003},"width":19.044983,"height":10.0905,"page":173},{"topLeft":{"x":459.1,"y":261.09003},"width":19.044983,"height":10.0905,"page":173},{"topLeft":{"x":499.3,"y":261.09003},"width":23.598999,"height":10.0905,"page":173}],"sectionNumber":2272,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618412Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786962Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b44275db7d64bd9f18b3e9bcfa09137e","type":"PII","value":"500 4000 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-7: Intergroup comparison of selected urinalysis parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.23,"y":90.90399},"width":14.619995,"height":10.0905,"page":173},{"topLeft":{"x":425.11,"y":90.90399},"width":19.044983,"height":10.0905,"page":173},{"topLeft":{"x":462.46,"y":90.90399},"width":19.044983,"height":10.0905,"page":173},{"topLeft":{"x":499.42,"y":90.90399},"width":23.598969,"height":10.0905,"page":173}],"sectionNumber":2280,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618412Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786962Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"998671637934522d907f706079850d3e","type":"PII","value":"500 4000 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-6: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":177.74,"y":261.09003},"width":14.619995,"height":10.0905,"page":173},{"topLeft":{"x":218.09,"y":261.09003},"width":19.044998,"height":10.0905,"page":173},{"topLeft":{"x":260.69,"y":261.09003},"width":19.044983,"height":10.0905,"page":173},{"topLeft":{"x":297.29,"y":261.09003},"width":23.598969,"height":10.0905,"page":173}],"sectionNumber":2272,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618412Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786962Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"930724ecd3215a1dc246e630751b774c","type":"PII","value":"500 4000 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-7: Intergroup comparison of selected urinalysis parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.65,"y":90.90399},"width":14.619995,"height":10.0905,"page":173},{"topLeft":{"x":234.53,"y":90.90399},"width":19.044998,"height":10.0905,"page":173},{"topLeft":{"x":272.57,"y":90.90399},"width":59.478973,"height":10.0905,"page":173}],"sectionNumber":2280,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618413Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786962Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"75591dbc65f4db5db2d04584e98cc1e1","type":"PII","value":"1174 947 1182","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-5: Intergroup comparison of achieved dosage (mg/kg bw/day) – overall means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":333.19,"y":480.35},"width":19.044983,"height":10.0905,"page":173},{"topLeft":{"x":410.23,"y":480.35},"width":14.619995,"height":10.0905,"page":173},{"topLeft":{"x":484.18,"y":480.35},"width":19.044983,"height":10.0905,"page":173}],"sectionNumber":2268,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618413Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786963Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4b9797f9b088d02441423387c0eda59f","type":"PII","value":"1322 1142 1321","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-5: Intergroup comparison of achieved dosage (mg/kg bw/day) – overall means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":333.19,"y":495.47},"width":19.044983,"height":10.0905,"page":173},{"topLeft":{"x":408.07,"y":495.47},"width":19.044983,"height":10.0905,"page":173},{"topLeft":{"x":484.18,"y":495.47},"width":19.044983,"height":10.0905,"page":173}],"sectionNumber":2267,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618413Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786963Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ae6169a801d501446048861f9f1159a0","type":"PII","value":"500 4000 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-8: Intergroup comparison of liver weights (g) toxicity study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":204.05,"y":431.99},"width":14.619995,"height":10.0905,"page":174},{"topLeft":{"x":239.33,"y":431.99},"width":19.044998,"height":10.0905,"page":174},{"topLeft":{"x":276.77,"y":431.99},"width":58.878967,"height":10.0905,"page":174}],"sectionNumber":2288,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618413Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786963Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"26b0614442cbb60a5f06200f07eb2077","type":"CBI_address","value":"Charles River, Edinburgh","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":88.14398},"width":113.75155,"height":11.017679,"page":174}],"sectionNumber":2315,"textBefore":"of study at ","textAfter":". Table 6.3.1-10:","comments":null,"startOffset":4536,"endOffset":4560,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618413Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a030745d0809c051e95e62ad33c5fee7","type":"PII","value":"500 4000 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-8: Intergroup comparison of liver weights (g) toxicity study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":391.51,"y":431.99},"width":14.619995,"height":10.0905,"page":174},{"topLeft":{"x":426.43,"y":431.99},"width":19.044983,"height":10.0905,"page":174},{"topLeft":{"x":462.58,"y":431.99},"width":19.044983,"height":10.0905,"page":174},{"topLeft":{"x":498.82,"y":431.99},"width":23.598999,"height":10.0905,"page":174}],"sectionNumber":2288,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618413Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786963Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f9c1d1122f4c29851e8ac9b261f03aae","type":"PII","value":"500 4000 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-10: Intergroup comparison of selected microscopic findings SYN545974 toxicity study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":222.65,"y":721.82},"width":14.619995,"height":10.0905,"page":175},{"topLeft":{"x":255.77,"y":721.82},"width":92.13896,"height":10.0905,"page":175}],"sectionNumber":2304,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618414Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786963Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d4bbee439c4f4a9c43bc3297949f3ea3","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":351.95566,"y":316.89},"width":38.260437,"height":10.526819,"page":175}],"sectionNumber":2317,"textBefore":"December 2012. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":223,"endOffset":231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618414Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3c39072833de7de686bb950aa88ad91","type":"CBI_author","value":"Strepka C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":456.80945,"y":415.41},"width":44.707367,"height":11.017679,"page":175}],"sectionNumber":2316,"textBefore":"hepatocellular hypertrophy. (","textAfter":", 2012) Guidelines:","comments":null,"startOffset":633,"endOffset":642,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618414Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59f534daf3b044dbf110331290793531","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":237.23674,"y":122.94},"width":15.0980835,"height":11.017679,"page":175}],"sectionNumber":2333,"textBefore":"CD-1 mice (","textAfter":":CD-1 (ICR)) were","comments":null,"startOffset":56,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618414Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c8da0855abb7ed5b68deb60705272db9","type":"PII","value":"500 4000 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-10: Intergroup comparison of selected microscopic findings SYN545974 toxicity study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.67,"y":721.82},"width":14.619995,"height":10.0905,"page":175},{"topLeft":{"x":432.79,"y":721.82},"width":86.38901,"height":10.0905,"page":175}],"sectionNumber":2304,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618414Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786964Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"92f6c468394ff7a147b202c11d5ac8d9","type":"CBI_author","value":"Strepka C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":202.96219,"y":339.57},"width":43.093384,"height":10.526819,"page":175}],"sectionNumber":2317,"textBefore":"Report: K-CA 5.3.1/02 ","textAfter":" (2012a). SYN545974,","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618414Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ad03191fa2848190d71bafc7b7603a4","type":"PII","value":"3050 712","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":459.25723,"y":274.76996},"width":44.188416,"height":11.017679,"page":175}],"sectionNumber":2316,"textBefore":"Guidelines, OPPTS 870.","textAfter":"-C-00- 366, July","comments":null,"startOffset":831,"endOffset":839,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618414Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786964Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dfcb27c0ecb0a64c6e578693ed54120c","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"CONCLUSION:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":364.92575,"y":236.82},"width":85.047485,"height":11.017679,"page":175}],"sectionNumber":2316,"textBefore":null,"textAfter":null,"comments":null,"startOffset":958,"endOffset":975,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618414Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"671202c0beab9a098634016fae21a3c9","type":"CBI_address","value":"Charles River, Tranent, Edinburgh, EH33 2NE, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":203.45,"y":328.41},"width":210.23991,"height":10.526819,"page":175}],"sectionNumber":2317,"textBefore":"Study in Mice. ","textAfter":". Laboratory Report","comments":null,"startOffset":103,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ad5f7675cf384b51bd39ba1bd3f991a","type":"CBI_author","value":"Blank","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":113.3,"y":518.27},"width":22.527985,"height":10.0905,"page":176}],"sectionNumber":2323,"textBefore":null,"textAfter":" diet","comments":null,"startOffset":2,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ce2740cc5b0a85c0015550525594197","type":"CBI_address","value":"Charles River UK Limited, Margate, Kent, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":192.05,"y":425.63},"width":170.68608,"height":10.0905,"page":177}],"sectionNumber":2336,"textBefore":null,"textAfter":null,"comments":null,"startOffset":157,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1255e15253c7310735e05244a92a5768","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":236.897,"y":455.75},"width":12.501999,"height":10.0905,"page":177}],"sectionNumber":2336,"textBefore":"CD-1 mice (","textAfter":":CD-1 (ICR))","comments":null,"startOffset":46,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"242ecc7460299dc74543dcc2f271b8d6","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":374.5377,"y":189.18},"width":15.0980835,"height":11.017679,"page":177}],"sectionNumber":2338,"textBefore":"CD-1 mice (","textAfter":":CD-1 (ICR)) were","comments":null,"startOffset":147,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b506a1f0672c44eb938137fbab6873d","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":78.624,"y":583.19},"width":28.467995,"height":10.018499,"page":177}],"sectionNumber":2335,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618415Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"053f6b0ebb1bc9fb7ecad5fa0b592836","type":"CBI_author","value":"Blank","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":116.3,"y":632.66},"width":22.527985,"height":10.0905,"page":178}],"sectionNumber":2342,"textBefore":null,"textAfter":" diet","comments":null,"startOffset":2,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0839353cd940699720e22201b60e444e","type":"CBI_author","value":"Blank","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":338.85},"width":27.37455,"height":11.017679,"page":178}],"sectionNumber":2355,"textBefore":"to the concentrations. ","textAfter":" diet i.e.","comments":null,"startOffset":717,"endOffset":722,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f447eaefae06bb9f8895850919194328","type":"PII","value":"1700-1830","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.02,"y":264.81},"width":48.670013,"height":11.017679,"page":179}],"sectionNumber":2355,"textBefore":"0830, 1100-1230, 1400-1530, ","textAfter":". The blood","comments":null,"startOffset":3604,"endOffset":3613,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618416Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786966Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"61e092e67e30f048a67ba0eaae1572ad","type":"PII","value":"1100-1230","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":91.70399,"y":264.81},"width":48.636024,"height":11.017679,"page":179}],"sectionNumber":2355,"textBefore":"times: 0700- 0830, ","textAfter":", 1400-1530, 1700-1830.","comments":null,"startOffset":3582,"endOffset":3591,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618416Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786966Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db3a140ee90a0d7abb9a5cfb9807ef81","type":"PII","value":"1400-1530","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":144.86,"y":264.81},"width":48.640015,"height":11.017679,"page":179}],"sectionNumber":2355,"textBefore":"0700- 0830, 1100-1230, ","textAfter":", 1700-1830. The","comments":null,"startOffset":3593,"endOffset":3602,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618416Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786967Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"63c0a1d2327a8d8e31be062fda7be4b4","type":"CBI_author","value":"Mann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Statistics:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":163.6296,"y":677.06},"width":26.690094,"height":11.017679,"page":182}],"sectionNumber":2373,"textBefore":"analysed using a ","textAfter":"-Whitney U-test.","comments":null,"startOffset":1461,"endOffset":1465,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618416Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb5f4815384a97e9fcd73eecb2ef282a","type":"CBI_author","value":"Whitney","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Statistics:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":192.89,"y":677.06},"width":39.12114,"height":11.017679,"page":182}],"sectionNumber":2373,"textBefore":"using a Mann-","textAfter":" U-test.","comments":null,"startOffset":1466,"endOffset":1473,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618417Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8ed9242119f6a304fcf06ea4a6af405f","type":"PII","value":"500 1500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-11: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.62,"y":407.85},"width":14.619995,"height":10.0905,"page":182},{"topLeft":{"x":202.73,"y":407.85},"width":19.044998,"height":10.0905,"page":182},{"topLeft":{"x":245.09,"y":407.85},"width":19.045013,"height":10.0905,"page":182},{"topLeft":{"x":287.45,"y":407.85},"width":19.044983,"height":10.0905,"page":182}],"sectionNumber":2376,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618417Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786967Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"143d29861e9327af7d36676eec8d279e","type":"PII","value":"500 1500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-11: Intergroup comparison of body weights and body weight gain (g) toxicity study- selected\ntimepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.35,"y":407.85},"width":14.619995,"height":10.0905,"page":182},{"topLeft":{"x":414.43,"y":407.85},"width":19.044983,"height":10.0905,"page":182},{"topLeft":{"x":456.7,"y":407.85},"width":19.044983,"height":10.0905,"page":182},{"topLeft":{"x":496.78,"y":407.85},"width":19.044952,"height":10.0905,"page":182}],"sectionNumber":2376,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618417Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786967Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1f5a5d6d99b5d03418451b431664bf2c","type":"PII","value":"1115 925 1053","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-13: Intergroup comparison of achieved dosage (mg/kg bw/day) – overall means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":332.95,"y":527.63},"width":19.044983,"height":10.0905,"page":183},{"topLeft":{"x":410.23,"y":527.63},"width":14.619995,"height":10.0905,"page":183},{"topLeft":{"x":480.7,"y":527.63},"width":19.044983,"height":10.0905,"page":183}],"sectionNumber":2409,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618417Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786968Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"decb20291f6981ea1bfa77dd7d1bb79f","type":"PII","value":"500 1500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-14: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.77,"y":292.89},"width":14.619995,"height":10.0905,"page":183},{"topLeft":{"x":234.77,"y":292.89},"width":19.044998,"height":10.0905,"page":183},{"topLeft":{"x":272.81,"y":292.89},"width":19.044983,"height":10.0905,"page":183},{"topLeft":{"x":310.97,"y":292.89},"width":19.044983,"height":10.0905,"page":183}],"sectionNumber":2414,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618417Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786968Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"363da8d3bea12ec541eece9aff4555de","type":"PII","value":"500 1500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-14: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.47,"y":292.89},"width":14.619995,"height":10.0905,"page":183},{"topLeft":{"x":425.35,"y":292.89},"width":19.044983,"height":10.0905,"page":183},{"topLeft":{"x":463.42,"y":292.89},"width":54.804962,"height":10.0905,"page":183}],"sectionNumber":2414,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618418Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786968Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"21773eebc18a99739dde774a5f20fbac","type":"PII","value":"1312 1132 1595","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-13: Intergroup comparison of achieved dosage (mg/kg bw/day) – overall means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":332.95,"y":512.51},"width":19.059998,"height":10.0905,"page":183},{"topLeft":{"x":408.07,"y":512.51},"width":19.044983,"height":10.0905,"page":183},{"topLeft":{"x":480.7,"y":512.51},"width":19.044983,"height":10.0905,"page":183}],"sectionNumber":2410,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618418Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786968Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9e72ede0f434da84c2a99dc09847bdd3","type":"CBI_author","value":"Strepka C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.88943,"y":257.85004},"width":44.707367,"height":11.017679,"page":184}],"sectionNumber":2437,"textBefore":"this study. (","textAfter":", 2012a)","comments":null,"startOffset":311,"endOffset":320,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618418Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f3f6373229c205075e037b4866006bd","type":"CBI_author","value":"Robertson B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.3.2. Oral 90- day study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":254.73679,"y":170.82},"width":53.718384,"height":10.526819,"page":184}],"sectionNumber":2438,"textBefore":"Shearer J. and ","textAfter":" (2015). SYN545974:","comments":null,"startOffset":37,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618418Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f93145fd7bb0e575c776788558e46663","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.3.2. Oral 90- day study","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":217.34453,"y":136.38},"width":38.04126,"height":10.526819,"page":184}],"sectionNumber":2438,"textBefore":"July 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":292,"endOffset":300,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618418Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3511ac67ace3b962dd9b0b76772089ce","type":"CBI_address","value":"Charles River, Tranent, Edinburgh, EH33 2NE, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.3.2. Oral 90- day study","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":475.78,"y":159.29999},"width":31.477661,"height":10.526819,"page":184},{"topLeft":{"x":133.82,"y":147.77997},"width":175.02118,"height":10.526819,"page":184}],"sectionNumber":2438,"textBefore":"report amendment 2). ","textAfter":". Laboratory Report","comments":null,"startOffset":176,"endOffset":223,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618419Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2c1fe71ebe7df761239a9dfc077402ec","type":"CBI_author","value":"Robertson B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.3.2. Oral 90- day study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.22102,"y":105.17999},"width":53.309982,"height":10.526819,"page":184}],"sectionNumber":2440,"textBefore":"5.3.2/02 Shearer J, ","textAfter":", 2016 SYN545974","comments":null,"startOffset":33,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618419Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c938a80131c2f53eeaac19cd58604b6c","type":"CBI_author","value":"Shearer J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.3.2. Oral 90- day study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.1222,"y":170.82},"width":40.292206,"height":10.526819,"page":184}],"sectionNumber":2438,"textBefore":"Report: K-CA 5.3.2/01 ","textAfter":" and Robertson","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618419Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0fed87ae699c2533a7cfc85741edfc6f","type":"CBI_author","value":"Shearer J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.3.2. Oral 90- day study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.20581,"y":105.17999},"width":39.873886,"height":10.526819,"page":184}],"sectionNumber":2440,"textBefore":"Report: K-CA 5.3.2/02 ","textAfter":", Robertson B,","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618419Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a12a4e6c26ad843dfdbdfc88e9f754e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.3.2. Oral 90- day study","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":176.54,"y":82.119995},"width":38.16078,"height":10.526819,"page":184}],"sectionNumber":2440,"textBefore":"Bracknell, United Kingdom, ","textAfter":" File No.","comments":null,"startOffset":182,"endOffset":190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618419Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f57318f26bab28a06ce50920c7239d08","type":"CBI_address","value":"Syngenta - Jealott’s Hill, Bracknell, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.3.2. Oral 90- day study","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":326.11,"y":93.664},"width":186.71777,"height":10.526819,"page":184},{"topLeft":{"x":133.82,"y":82.119995},"width":38.838043,"height":10.526819,"page":184}],"sectionNumber":2440,"textBefore":"SYN545974_10210 and SYN545974_10211, ","textAfter":", Syngenta File","comments":null,"startOffset":128,"endOffset":180,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61842Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c330b9eaa43cf13e85a7bfdebfc56583","type":"PII","value":"500 1500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-15: Intergroup comparison of liver weights (g) toxicity study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":388.87,"y":610.34},"width":14.619995,"height":10.0905,"page":184},{"topLeft":{"x":423.79,"y":610.34},"width":19.044983,"height":10.0905,"page":184},{"topLeft":{"x":461.14,"y":610.34},"width":19.044983,"height":10.0905,"page":184},{"topLeft":{"x":497.5,"y":610.34},"width":19.044983,"height":10.0905,"page":184}],"sectionNumber":2422,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61842Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78697Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0dd31f162be391984a5bf40e4b23a409","type":"PII","value":"500 1500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.1-15: Intergroup comparison of liver weights (g) toxicity study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":203.21,"y":610.34},"width":14.619995,"height":10.0905,"page":184},{"topLeft":{"x":238.01,"y":610.34},"width":19.044998,"height":10.0905,"page":184},{"topLeft":{"x":275.21,"y":610.34},"width":19.044983,"height":10.0905,"page":184},{"topLeft":{"x":312.43,"y":610.34},"width":19.044983,"height":10.0905,"page":184}],"sectionNumber":2422,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61842Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78697Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ea3cedcf207671a88e4a7133ddebec36","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":283.32297,"y":512.51},"width":19.337433,"height":11.017679,"page":185}],"sectionNumber":2443,"textBefore":"7-8 week old, ","textAfter":" Wistar (Crl:WI(Han)","comments":null,"startOffset":429,"endOffset":432,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61842Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51399e9d6685ed7c9f0eb61c5ca08e37","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.3.2. Oral 90- day study","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.56978,"y":702.26},"width":82.552475,"height":11.017679,"page":185}],"sectionNumber":2442,"textBefore":null,"textAfter":null,"comments":null,"startOffset":288,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61842Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"946624d2f906db1d95bdafbc40a6d8bf","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":287.27887,"y":499.91},"width":27.153748,"height":11.017679,"page":185}],"sectionNumber":2443,"textBefore":null,"textAfter":null,"comments":null,"startOffset":530,"endOffset":536,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618421Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2d9d49dd255b93aa1c31d41de8c02ed2","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":340.85242,"y":512.51},"width":14.976654,"height":11.017679,"page":185}],"sectionNumber":2443,"textBefore":"Han Wistar (","textAfter":":WI(Han) rats were","comments":null,"startOffset":441,"endOffset":444,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618421Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"236e7688c69ca987a94ecda3a7517a75","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":375.507,"y":512.51},"width":19.337433,"height":11.017679,"page":185}],"sectionNumber":2443,"textBefore":"Han Wistar (Crl:WI(","textAfter":") rats were","comments":null,"startOffset":448,"endOffset":451,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618421Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"818438153b58aad7cec8c1d842042082","type":"PII","value":"218-278","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":313.568,"y":286.16998},"width":31.113007,"height":10.0905,"page":186}],"sectionNumber":2445,"textBefore":"7-8 weeks / ","textAfter":" g (males),","comments":null,"startOffset":110,"endOffset":117,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618421Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786971Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3bced59fe099a464a64f1cdde62460da","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":504.86484,"y":66.03998},"width":27.38565,"height":11.017679,"page":186}],"sectionNumber":2446,"textBefore":null,"textAfter":null,"comments":null,"startOffset":473,"endOffset":479,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618421Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9f601e45e7b1f46e3e2e0d79039bdf15","type":"PII","value":"40-70","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":335.98706,"y":178.02002},"width":22.142944,"height":10.0905,"page":186}],"sectionNumber":2445,"textBefore":"Temperature: 21-23°C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":701,"endOffset":706,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618421Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786971Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"053286ba04e283937068c8300606f76b","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.17,"y":299.01},"width":15.940002,"height":10.0905,"page":186}],"sectionNumber":2445,"textBefore":null,"textAfter":" Wistar rats","comments":null,"startOffset":33,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618421Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a29dbbec7e85253823d758df5192f81f","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":478.7971,"y":78.640015},"width":19.337433,"height":11.017679,"page":186}],"sectionNumber":2446,"textBefore":"7-8 week old, ","textAfter":" Wistar (Crl:WI(Han)","comments":null,"startOffset":372,"endOffset":375,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618422Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"edbbd45495f6b9a2b4bce2b3289cc270","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":67.81344,"y":66.03998},"width":15.0980835,"height":11.017679,"page":186}],"sectionNumber":2446,"textBefore":"Han Wistar (","textAfter":":WI(Han) rats were","comments":null,"startOffset":384,"endOffset":387,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618422Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"87c307b818f036cbeaf1df3ea952b993","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":102.58945,"y":66.03998},"width":19.33744,"height":11.017679,"page":186}],"sectionNumber":2446,"textBefore":"Han Wistar (Crl:WI(","textAfter":") rats were","comments":null,"startOffset":391,"endOffset":394,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618422Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e040e4848092b6525662ea1d43704a53","type":"PII","value":"129-183","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":384.01007,"y":286.16998},"width":31.110931,"height":10.0905,"page":186}],"sectionNumber":2445,"textBefore":"218-278 g (males), ","textAfter":" g (females)","comments":null,"startOffset":129,"endOffset":136,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618422Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786972Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ade087179ac80c9deb817b71b3455081","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":71.424,"y":412.89},"width":28.467995,"height":10.018499,"page":186}],"sectionNumber":2444,"textBefore":null,"textAfter":null,"comments":null,"startOffset":92,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618422Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"180e013cdb2f15271b65dac58f887dca","type":"CBI_address","value":"Charles River UK Limited, Margate, Kent, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.17,"y":273.33002},"width":170.68608,"height":10.0905,"page":186}],"sectionNumber":2445,"textBefore":null,"textAfter":null,"comments":null,"startOffset":156,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618422Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f54417b9e067bb2bbea4ac08e0f7d681","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":306.2481,"y":299.01},"width":15.948975,"height":10.0905,"page":186}],"sectionNumber":2445,"textBefore":"Wistar rats (CrL:WI(","textAfter":"))","comments":null,"startOffset":57,"endOffset":60,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618422Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a0e66808305aee525b7cfec4c05016d","type":"PII","value":"8000 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":286.01,"y":468.47},"width":19.044983,"height":10.0905,"page":187},{"topLeft":{"x":383.35,"y":468.47},"width":10.059998,"height":10.0905,"page":187},{"topLeft":{"x":473.62,"y":468.47},"width":10.059998,"height":10.0905,"page":187}],"sectionNumber":2451,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618422Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786972Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"283ff0f65e424cad06b06ed274983620","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study design","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":96.23039,"y":288.33002},"width":62.338226,"height":11.017679,"page":187}],"sectionNumber":2454,"textBefore":"conditions established during ","textAfter":" Study Number","comments":null,"startOffset":988,"endOffset":1001,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618422Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7191aec1abd99e2b4a5be85896b5e0ca","type":"CBI_author","value":"Strepka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":466.3227,"y":714.98},"width":34.57263,"height":11.017679,"page":187}],"sectionNumber":2446,"textBefore":"day study (","textAfter":", 2012; MCA","comments":null,"startOffset":703,"endOffset":710,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618422Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f395a076c4a273b2991f8841a35cd81a","type":"PII","value":"1500 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":286.01,"y":483.35},"width":19.044983,"height":10.0905,"page":187},{"topLeft":{"x":383.35,"y":483.35},"width":10.059998,"height":10.0905,"page":187},{"topLeft":{"x":473.62,"y":483.35},"width":10.059998,"height":10.0905,"page":187}],"sectionNumber":2450,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618423Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786973Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"766c6a07c94d191d0d39b1a929c62e6d","type":"PII","value":"16000 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":283.73,"y":453.59},"width":23.598969,"height":10.0905,"page":187},{"topLeft":{"x":383.35,"y":453.59},"width":10.059998,"height":10.0905,"page":187},{"topLeft":{"x":473.62,"y":453.59},"width":10.059998,"height":10.0905,"page":187}],"sectionNumber":2452,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618423Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786973Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7e97ef72a2322be11a804f8223a308d5","type":"PII","value":"250 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":288.29,"y":498.23},"width":14.619995,"height":10.0905,"page":187},{"topLeft":{"x":383.35,"y":498.23},"width":10.059998,"height":10.0905,"page":187},{"topLeft":{"x":473.62,"y":498.23},"width":10.059998,"height":10.0905,"page":187}],"sectionNumber":2449,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618423Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786973Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3f293293b6957a2744ba120f729e6f13","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-2: Intergroup comparison of food consumption - selected timepoints (g/animal/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.47,"y":244.5},"width":14.619995,"height":10.018499,"page":192},{"topLeft":{"x":414.55,"y":244.5},"width":19.044983,"height":10.018499,"page":192},{"topLeft":{"x":456.94,"y":244.5},"width":19.044983,"height":10.018499,"page":192},{"topLeft":{"x":494.26,"y":244.5},"width":23.598999,"height":10.018499,"page":192}],"sectionNumber":2469,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618423Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786974Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bd3afb195e4080572e6ebd0e74ea62e6","type":"PII","value":"172 161","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-1: Intergroup comparison of bodyweights - selected timepoints (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":498.82,"y":545.87},"width":14.619995,"height":10.0905,"page":192},{"topLeft":{"x":498.82,"y":531.59},"width":14.619995,"height":10.0905,"page":192}],"sectionNumber":2465,"textBefore":null,"textAfter":" 172 181","comments":null,"startOffset":318,"endOffset":325,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618423Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786974Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7ef787010ba93e972087ae5f510374ed","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-1: Intergroup comparison of bodyweights - selected timepoints (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.47,"y":560.63},"width":14.619995,"height":10.018499,"page":192},{"topLeft":{"x":414.55,"y":560.63},"width":19.044983,"height":10.018499,"page":192},{"topLeft":{"x":456.94,"y":560.63},"width":19.044983,"height":10.018499,"page":192},{"topLeft":{"x":494.26,"y":560.63},"width":23.598999,"height":10.018499,"page":192}],"sectionNumber":2464,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618424Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786975Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dd2480c9cd12cbe446fc52dadde8ec31","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-2: Intergroup comparison of food consumption - selected timepoints (g/animal/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.86,"y":244.5},"width":14.619995,"height":10.018499,"page":192},{"topLeft":{"x":202.97,"y":244.5},"width":19.044998,"height":10.018499,"page":192},{"topLeft":{"x":245.33,"y":244.5},"width":19.044998,"height":10.018499,"page":192},{"topLeft":{"x":285.29,"y":244.5},"width":23.598969,"height":10.018499,"page":192}],"sectionNumber":2469,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618424Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786975Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"34e44f0027588be135958e2e5e01e5d3","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-1: Intergroup comparison of bodyweights - selected timepoints (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.86,"y":560.63},"width":14.619995,"height":10.018499,"page":192},{"topLeft":{"x":202.97,"y":560.63},"width":19.044998,"height":10.018499,"page":192},{"topLeft":{"x":245.33,"y":560.63},"width":19.044998,"height":10.018499,"page":192},{"topLeft":{"x":285.29,"y":560.63},"width":23.598969,"height":10.018499,"page":192}],"sectionNumber":2464,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618424Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786975Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"adddd06c2462150741d42cabbef8a4f0","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-5: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.58,"y":250.73999},"width":105.71388,"height":9.58986,"page":193}],"sectionNumber":2485,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618424Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786975Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ac401c1c079cac6f2812c199b6a3af41","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-3: Intergroup comparison of food utilisation - selected timepoints (g/animal/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.47,"y":710.06},"width":14.619995,"height":10.018499,"page":193},{"topLeft":{"x":414.55,"y":710.06},"width":19.044983,"height":10.018499,"page":193},{"topLeft":{"x":456.94,"y":710.06},"width":19.044983,"height":10.018499,"page":193},{"topLeft":{"x":494.26,"y":710.06},"width":23.598999,"height":10.018499,"page":193}],"sectionNumber":2473,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618424Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786975Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"38efd1b13c76e68cf73f8a26a2596771","type":"PII","value":"111 587 1187","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-4: Mean dose received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":289.85,"y":515.39},"width":14.619995,"height":10.0905,"page":193},{"topLeft":{"x":380.11,"y":515.39},"width":14.619995,"height":10.0905,"page":193},{"topLeft":{"x":468.34,"y":515.39},"width":19.044983,"height":10.0905,"page":193}],"sectionNumber":2477,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618424Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786976Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1a6c206490167e15808c0fd6c422686b","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-5: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":327.43,"y":250.73999},"width":105.6839,"height":9.58986,"page":193}],"sectionNumber":2481,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618424Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786976Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bebbcd32869f48a70b38744fcb0f2dd4","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-4: Mean dose received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.49,"y":538.67},"width":14.619995,"height":10.018499,"page":193},{"topLeft":{"x":287.57,"y":538.67},"width":19.044983,"height":10.018499,"page":193},{"topLeft":{"x":377.95,"y":538.67},"width":19.044983,"height":10.018499,"page":193},{"topLeft":{"x":466.06,"y":538.67},"width":23.598969,"height":10.018499,"page":193}],"sectionNumber":2476,"textBefore":null,"textAfter":null,"comments":null,"startOffset":28,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618424Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786976Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"89736cbe36a5685e23aac326cd34e679","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-3: Intergroup comparison of food utilisation - selected timepoints (g/animal/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.86,"y":710.06},"width":14.619995,"height":10.018499,"page":193},{"topLeft":{"x":202.97,"y":710.06},"width":19.044998,"height":10.018499,"page":193},{"topLeft":{"x":245.33,"y":710.06},"width":19.044998,"height":10.018499,"page":193},{"topLeft":{"x":285.29,"y":710.06},"width":23.598969,"height":10.018499,"page":193}],"sectionNumber":2473,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618424Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786976Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2fadf3e17b2f56b700a2934be5ce8d52","type":"PII","value":"127 727 1325","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-4: Mean dose received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":289.85,"y":496.91},"width":14.619995,"height":10.0905,"page":193},{"topLeft":{"x":380.11,"y":496.91},"width":14.619995,"height":10.0905,"page":193},{"topLeft":{"x":468.34,"y":496.91},"width":19.044983,"height":10.0905,"page":193}],"sectionNumber":2478,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618425Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786976Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a08e181c164e30e06a03a3879edcfe4b","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-6: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":327.43,"y":224.10004},"width":13.051941,"height":9.58986,"page":194},{"topLeft":{"x":357.31,"y":224.10004},"width":79.283905,"height":9.58986,"page":194}],"sectionNumber":2490,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618425Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786977Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0a07b1322ca911ba62fd7b77d0276cc3","type":"PII","value":"62 64 62 63 62","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":301.01,"y":179.10004},"width":9.099976,"height":9.65418,"page":194},{"topLeft":{"x":329.35,"y":179.10004},"width":9.099976,"height":9.65418,"page":194},{"topLeft":{"x":361.27,"y":179.10004},"width":9.099976,"height":9.65418,"page":194},{"topLeft":{"x":393.19,"y":179.10004},"width":9.099976,"height":9.65418,"page":194},{"topLeft":{"x":421.51,"y":179.10004},"width":9.099976,"height":9.65418,"page":194}],"sectionNumber":2503,"textBefore":"61 63 63* ","textAfter":" Urea 5.7","comments":null,"startOffset":6682,"endOffset":6696,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618425Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786977Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"30a0652e3af38a4fcd0c7b3361aef458","type":"PII","value":"93 89 65","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":159.14,"y":212.10004},"width":9.100006,"height":9.65418,"page":194},{"topLeft":{"x":187.61,"y":212.10004},"width":9.100006,"height":9.65418,"page":194},{"topLeft":{"x":211.97,"y":212.10004},"width":9.088242,"height":9.65418,"page":194}],"sectionNumber":2503,"textBefore":"parameters Alkaline phosphatase ","textAfter":"** 64** 57**","comments":null,"startOffset":6599,"endOffset":6607,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618425Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786977Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12898bf7c14bf7ebac58306ba367fdfd","type":"PII","value":"60 60 61 63 63","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":159.26,"y":179.10004},"width":9.100006,"height":9.65418,"page":194},{"topLeft":{"x":187.61,"y":179.10004},"width":9.100006,"height":9.65418,"page":194},{"topLeft":{"x":215.93,"y":179.10004},"width":9.100006,"height":9.65418,"page":194},{"topLeft":{"x":244.25,"y":179.10004},"width":9.100006,"height":9.65418,"page":194},{"topLeft":{"x":270.77,"y":179.10004},"width":9.099976,"height":9.65418,"page":194}],"sectionNumber":2503,"textBefore":"Total protein (TP) ","textAfter":"* 62 64","comments":null,"startOffset":6666,"endOffset":6680,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618425Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786978Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f332a7c1f199726a3ec40d77cee9bfbd","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-6: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":185.66,"y":224.10004},"width":101.9939,"height":9.58986,"page":194}],"sectionNumber":2496,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618425Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786978Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"92bf03fc6ffab245e10dfa6b6018fcce","type":"PII","value":"(55-105","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-6: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.58,"y":174.41998},"width":26.371948,"height":9.65418,"page":194}],"sectionNumber":2492,"textBefore":"63 ","textAfter":null,"comments":null,"startOffset":47,"endOffset":54,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618425Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786978Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d9079c993d156f17c8871078e0c9b3ae","type":"PII","value":"40 39 41 44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":159.26,"y":123.53998},"width":9.100006,"height":9.65418,"page":194},{"topLeft":{"x":187.61,"y":123.53998},"width":9.100006,"height":9.65418,"page":194},{"topLeft":{"x":215.93,"y":123.53998},"width":9.100006,"height":9.65418,"page":194},{"topLeft":{"x":240.29,"y":123.53998},"width":9.088242,"height":9.65418,"page":194}],"sectionNumber":2503,"textBefore":"5.7 5.1** Albumin ","textAfter":"** 44** 46","comments":null,"startOffset":6752,"endOffset":6763,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618426Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786978Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"076313a1331d1f1cec1ebd7f60f71b27","type":"PII","value":"143 143 144 143 144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":157.22,"y":75.52002},"width":13.051971,"height":9.65418,"page":194},{"topLeft":{"x":185.66,"y":75.52002},"width":13.051971,"height":9.65418,"page":194},{"topLeft":{"x":214.01,"y":75.52002},"width":13.051971,"height":9.65418,"page":194},{"topLeft":{"x":242.33,"y":75.52002},"width":39.331924,"height":9.65418,"page":194}],"sectionNumber":2503,"textBefore":"2.64* 2.58 Sodium ","textAfter":"* 143 144","comments":null,"startOffset":6856,"endOffset":6875,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618426Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786979Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c05846e9344224c58b9d3b9dcd4c512f","type":"PII","value":"(47-138","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-6: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.58,"y":199.73999},"width":26.371948,"height":9.65418,"page":194}],"sectionNumber":2491,"textBefore":"79.4 ","textAfter":")","comments":null,"startOffset":49,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618426Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786979Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"306fca9a578edf32532d429fe2a68c1e","type":"PII","value":"143 144 144 144 144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":299.09,"y":75.52002},"width":13.051941,"height":9.65418,"page":194},{"topLeft":{"x":327.43,"y":75.52002},"width":13.051941,"height":9.65418,"page":194},{"topLeft":{"x":359.23,"y":75.52002},"width":13.051941,"height":9.65418,"page":194},{"topLeft":{"x":391.27,"y":75.52002},"width":13.051941,"height":9.65418,"page":194},{"topLeft":{"x":419.59,"y":75.52002},"width":13.051941,"height":9.65418,"page":194}],"sectionNumber":2503,"textBefore":"144 143 144* ","textAfter":" Potassium 4.2","comments":null,"startOffset":6877,"endOffset":6896,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618426Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786979Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"57d6c479f88e4817035306b6b0c58830","type":"PII","value":"(21-81","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-6: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":502.3,"y":199.73999},"width":22.420044,"height":9.65418,"page":194}],"sectionNumber":2491,"textBefore":"43.6 ","textAfter":null,"comments":null,"startOffset":63,"endOffset":69,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618426Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786979Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"051d924c6d8776f956dccd927193c269","type":"PII","value":"11-12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.31946,"y":730.7},"width":19.668762,"height":9.65418,"page":194}],"sectionNumber":2488,"textBefore":"6.36 (3.","textAfter":".23)","comments":null,"startOffset":8,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618426Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78698Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4f39cf047f0ca3eb6cc88b57ec1ee5c7","type":"PII","value":"59 45 35","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":301.01,"y":212.10004},"width":9.099976,"height":9.65418,"page":194},{"topLeft":{"x":329.35,"y":212.10004},"width":9.099976,"height":9.65418,"page":194},{"topLeft":{"x":357.31,"y":212.10004},"width":9.088226,"height":9.65418,"page":194}],"sectionNumber":2503,"textBefore":"65** 64** 57** ","textAfter":"** 34** 36**","comments":null,"startOffset":6620,"endOffset":6628,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618426Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78698Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2a7cf584247563ae85976332bdb0f6ed","type":"PII","value":"(140-146","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-6: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":448.54,"y":61.599976},"width":30.347412,"height":9.65418,"page":194}],"sectionNumber":2496,"textBefore":"143 ","textAfter":null,"comments":null,"startOffset":48,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618427Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78698Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d64ccd16f9f5916d6c266d704e540296","type":"hint_only","value":"performing laboratory","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":82.79472,"y":497.51},"width":98.51633,"height":11.017679,"page":194}],"sectionNumber":2503,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5283,"endOffset":5304,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618427Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6039c8e1039ceea1b13f46ca5a79bea9","type":"PII","value":"(114-306","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":495.34,"y":661.34},"width":30.347504,"height":9.65418,"page":194}],"sectionNumber":2488,"textBefore":"180 ","textAfter":null,"comments":null,"startOffset":56,"endOffset":64,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618427Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78698Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"57b1e49d228c1b63240aea3d1d86f1b2","type":"hint_only","value":"performing laboratory","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":323.79797,"y":522.83},"width":98.61563,"height":11.017679,"page":194}],"sectionNumber":2503,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5130,"endOffset":5151,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618427Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dee439c63e47d1659f7ac110f93ec6be","type":"PII","value":"178 194 193 232","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":299.09,"y":673.94},"width":13.051941,"height":9.65418,"page":194},{"topLeft":{"x":327.43,"y":673.94},"width":13.051941,"height":9.65418,"page":194},{"topLeft":{"x":355.75,"y":673.94},"width":39.451935,"height":9.65418,"page":194}],"sectionNumber":2503,"textBefore":"293 282 301 ","textAfter":"* 190 *","comments":null,"startOffset":4216,"endOffset":4231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618427Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786981Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8710f163e35dfa52d8560434d4b19fcc","type":"PII","value":"46 47 45 45 45","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":301.01,"y":123.53998},"width":9.099976,"height":9.65418,"page":194},{"topLeft":{"x":329.35,"y":123.53998},"width":9.099976,"height":9.65418,"page":194},{"topLeft":{"x":361.27,"y":123.53998},"width":9.099976,"height":9.65418,"page":194},{"topLeft":{"x":393.19,"y":123.53998},"width":9.099976,"height":9.65418,"page":194},{"topLeft":{"x":421.51,"y":123.53998},"width":9.099976,"height":9.65418,"page":194}],"sectionNumber":2503,"textBefore":"41 44** 44** ","textAfter":" Calcium 2.57","comments":null,"startOffset":6771,"endOffset":6785,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618427Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786981Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"955a2830e7bdf195f3da3a04fe9ad229","type":"PII","value":"301 286 293 282 301","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":150.26,"y":673.94},"width":13.051971,"height":9.65418,"page":194},{"topLeft":{"x":178.58,"y":673.94},"width":13.051971,"height":9.65418,"page":194},{"topLeft":{"x":206.93,"y":673.94},"width":13.051971,"height":9.65418,"page":194},{"topLeft":{"x":235.25,"y":673.94},"width":13.051971,"height":9.65418,"page":194},{"topLeft":{"x":267.17,"y":673.94},"width":13.051941,"height":9.65418,"page":194}],"sectionNumber":2503,"textBefore":"2.51 3.73* Fibrinogen ","textAfter":" 178 194","comments":null,"startOffset":4196,"endOffset":4215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618428Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786981Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bf2ffb494308062c39c0ad20f5afc0d1","type":"PII","value":"(38-47","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-6: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":452.5,"y":118.97998},"width":22.419983,"height":9.65418,"page":194}],"sectionNumber":2494,"textBefore":"42 ","textAfter":null,"comments":null,"startOffset":47,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618428Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786981Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4e4608ed57eef52d29702c41d5665f20","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-7: Intergroup comparison of selected urine parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":131.66,"y":522.59},"width":104.149,"height":10.018499,"page":195}],"sectionNumber":2500,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618428Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786982Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"537ff2f625bc52cda0387ce52a8b5c91","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-7: Intergroup comparison of selected urine parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":277.01,"y":522.59},"width":114.82498,"height":10.018499,"page":195}],"sectionNumber":2500,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618428Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786982Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0768bcfd04019be4d76e0284d7913ba5","type":"CBI_author","value":"Shearer J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":383.09946,"y":88.02399},"width":41.516815,"height":11.017679,"page":196}],"sectionNumber":2518,"textBefore":"(727 mg/kg/day). (","textAfter":" and Robertson","comments":null,"startOffset":3096,"endOffset":3105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618428Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"97dc8e3b5bde5377f3a3b3cd0e49db41","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-8: Intergroup comparison of selected organ weights","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":204.29,"y":698.42},"width":14.619995,"height":10.018499,"page":196},{"topLeft":{"x":239.81,"y":698.42},"width":19.044983,"height":10.018499,"page":196},{"topLeft":{"x":277.61,"y":698.42},"width":59.138977,"height":10.018499,"page":196}],"sectionNumber":2505,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618429Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786982Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"57ed0b895c27e24997defabd8f2a3a52","type":"CBI_author","value":"Robertson B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.11115,"y":88.02399},"width":56.332428,"height":11.017679,"page":196}],"sectionNumber":2518,"textBefore":"(Shearer J and ","textAfter":", 2015) Guidelines:","comments":null,"startOffset":3110,"endOffset":3121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618429Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"080bfc73ddddadffea47335ba6b6e538","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-9: Intergroup comparison of selected microscopic findings","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":234.29,"y":424.43},"width":14.619995,"height":10.018499,"page":196},{"topLeft":{"x":265.97,"y":424.43},"width":89.13898,"height":10.018499,"page":196}],"sectionNumber":2510,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618429Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786982Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31266dc91d5b1e1e3898faabe375b41c","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-8: Intergroup comparison of selected organ weights","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.59,"y":698.42},"width":14.619995,"height":10.018499,"page":196},{"topLeft":{"x":418.75,"y":698.42},"width":19.044983,"height":10.018499,"page":196},{"topLeft":{"x":460.06,"y":698.42},"width":59.11902,"height":10.018499,"page":196}],"sectionNumber":2505,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618429Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786982Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e4f2d69809b717f93f05bbdc18a21cb8","type":"PII","value":"250 1500 8000 16000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-9: Intergroup comparison of selected microscopic findings","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":397.51,"y":424.43},"width":48.684967,"height":10.018499,"page":196},{"topLeft":{"x":466.18,"y":424.43},"width":19.044983,"height":10.018499,"page":196},{"topLeft":{"x":502.9,"y":424.43},"width":23.59903,"height":10.018499,"page":196}],"sectionNumber":2510,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618429Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786983Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"03f3062311eddd7076a735bc605e8480","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":176.54,"y":636.38},"width":38.16078,"height":10.526819,"page":197}],"sectionNumber":2516,"textBefore":"Bracknell, United Kingdom, ","textAfter":" File No.","comments":null,"startOffset":182,"endOffset":190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61843Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"093f64197ea8df1628517b9db72025b9","type":"CBI_address","value":"Syngenta - Jealott’s Hill, Bracknell, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":326.11,"y":647.9},"width":186.82043,"height":10.526819,"page":197},{"topLeft":{"x":133.82,"y":636.38},"width":38.838043,"height":10.526819,"page":197}],"sectionNumber":2516,"textBefore":"SYN545974_10210 and SYN545974_10211, ","textAfter":", Syngenta File","comments":null,"startOffset":128,"endOffset":180,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61843Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0521eb950aad89f33a96ef6c209adb9d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":189.80515,"y":690.62},"width":38.16078,"height":10.526819,"page":197}],"sectionNumber":2514,"textBefore":"July 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":275,"endOffset":283,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61843Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9725c5adf323062ee28da8dfaa140e02","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":265.18658,"y":346.77},"width":27.38559,"height":11.017679,"page":197}],"sectionNumber":2519,"textBefore":null,"textAfter":null,"comments":null,"startOffset":527,"endOffset":533,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61843Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4d49e67d12e32cfe8eb0242924e7932f","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":311.54987,"y":359.49},"width":15.0980835,"height":11.017679,"page":197}],"sectionNumber":2519,"textBefore":"old, CD-1 (","textAfter":":CD-1(ICR)) mice were","comments":null,"startOffset":437,"endOffset":440,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61843Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3f8b43388392110680e3b50382b998be","type":"CBI_address","value":"Charles River, Tranent, Edinburgh, EH33 2NE, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":416.95,"y":713.54},"width":95.9389,"height":10.526819,"page":197},{"topLeft":{"x":133.82,"y":702.02},"width":122.123505,"height":10.526819,"page":197}],"sectionNumber":2514,"textBefore":"Report Amendment 2). ","textAfter":". Laboratory Report","comments":null,"startOffset":159,"endOffset":206,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618431Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d06673712699bac8c6092630910d63b7","type":"CBI_author","value":"Shearer J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.60028,"y":725.06},"width":40.64081,"height":10.526819,"page":197}],"sectionNumber":2514,"textBefore":"Report: K-CA 5.3.2/03 ","textAfter":" (2015). SYN545974:","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618431Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82c725c5462e1832fd4a1a0c99c3daa2","type":"CBI_author","value":"Shearer J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.20581,"y":659.42},"width":39.873886,"height":10.526819,"page":197}],"sectionNumber":2516,"textBefore":"Report: K-CA 5.3.2/04 ","textAfter":", Robertson B,","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618431Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d8937a8b196f76b9c8c86861b7ee8ea","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Sacrifice and pathology:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.56978,"y":532.79},"width":82.552475,"height":11.017679,"page":197}],"sectionNumber":2518,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3389,"endOffset":3406,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618431Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"921fff7f32a2cf0e658f19adf90bddbc","type":"CBI_author","value":"Robertson B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.22102,"y":659.42},"width":53.309982,"height":10.526819,"page":197}],"sectionNumber":2516,"textBefore":"5.3.2/04 Shearer J, ","textAfter":", 2016 SYN545974","comments":null,"startOffset":33,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9da631e70eee9b5e2b75c457bd5f00d2","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":495.44943,"y":103.97998},"width":15.0980835,"height":11.017679,"page":198}],"sectionNumber":2522,"textBefore":"old, CD-1 (","textAfter":":CD1(ICR)) mice were","comments":null,"startOffset":378,"endOffset":381,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c879ee1e2483d32a5b8caf801582bbd7","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":448.79},"width":28.467995,"height":10.018499,"page":198}],"sectionNumber":2520,"textBefore":null,"textAfter":null,"comments":null,"startOffset":92,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618432Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"30965ad54baed7c956312fd4375c17ee","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":282.09805,"y":333.69},"width":12.502014,"height":10.0905,"page":198}],"sectionNumber":2521,"textBefore":"CD-1, designation ","textAfter":":CD-1(ICR),","comments":null,"startOffset":53,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7585b011dcf072ce28ad90fe218819ad","type":"PII","value":"22-30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":373.4651,"y":320.85004},"width":22.101929,"height":10.0905,"page":198}],"sectionNumber":2521,"textBefore":"29-40 g (males), ","textAfter":" g (females)","comments":null,"startOffset":132,"endOffset":137,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618432Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786984Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"591999e8581b36422f61a1064f8fd82d","type":"CBI_address","value":"Charles River UK Limited, Margate, Kent, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":308.01},"width":170.68608,"height":10.0905,"page":198}],"sectionNumber":2521,"textBefore":null,"textAfter":null,"comments":null,"startOffset":157,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"983390bad3228c54a3faf253485a17b1","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":454.34586,"y":91.38397},"width":27.26413,"height":11.017679,"page":198}],"sectionNumber":2522,"textBefore":null,"textAfter":null,"comments":null,"startOffset":467,"endOffset":473,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618433Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6d1a8a61925ef0a83cbf681befc6ae2d","type":"PII","value":"100 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":256.97,"y":555.59},"width":14.619995,"height":10.0905,"page":199},{"topLeft":{"x":356.47,"y":555.59},"width":10.059998,"height":10.0905,"page":199},{"topLeft":{"x":455.98,"y":555.59},"width":10.059998,"height":10.0905,"page":199}],"sectionNumber":2525,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618433Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786984Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1cf224ff3e74c07ce738337ef4229648","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study design","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":144.42,"y":331.89},"width":63.439926,"height":11.017679,"page":199}],"sectionNumber":2535,"textBefore":"validation study (","textAfter":" Study Number","comments":null,"startOffset":1105,"endOffset":1118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618433Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b86e3e8832714aef4ad167eee47a13e","type":"PII","value":"500 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":256.97,"y":540.71},"width":14.619995,"height":10.0905,"page":199},{"topLeft":{"x":356.47,"y":540.71},"width":10.059998,"height":10.0905,"page":199},{"topLeft":{"x":455.98,"y":540.71},"width":10.059998,"height":10.0905,"page":199}],"sectionNumber":2526,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618433Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786985Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d7833b9a3cee377df0203bab5927a69f","type":"CBI_author","value":"Strepka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":461.7147,"y":752.9},"width":34.69409,"height":11.017679,"page":199}],"sectionNumber":2522,"textBefore":"day study (","textAfter":", 2012a, MCA","comments":null,"startOffset":697,"endOffset":704,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618433Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ff345f7855bccbcdd7ea5411eda6f09d","type":"PII","value":"4000 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":256.97,"y":525.83},"width":19.044983,"height":10.0905,"page":199},{"topLeft":{"x":356.47,"y":525.83},"width":10.059998,"height":10.0905,"page":199},{"topLeft":{"x":455.98,"y":525.83},"width":10.059998,"height":10.0905,"page":199}],"sectionNumber":2527,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618434Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786985Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0240861c7748e0515622fae65c920aca","type":"PII","value":"7000 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":256.97,"y":511.07},"width":19.044983,"height":10.0905,"page":199},{"topLeft":{"x":356.47,"y":511.07},"width":10.059998,"height":10.0905,"page":199},{"topLeft":{"x":455.98,"y":511.07},"width":10.059998,"height":10.0905,"page":199}],"sectionNumber":2528,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618434Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786985Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b54b4c95797238a62e7b4c2608c63556","type":"PII","value":"630 1158","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-11: Mean Dose Received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.51,"y":311.97003},"width":14.619995,"height":10.0905,"page":203},{"topLeft":{"x":469.18,"y":311.97003},"width":19.044983,"height":10.0905,"page":203}],"sectionNumber":2541,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618435Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786986Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c08384d9a55f3c0e14d340036b9dd935","type":"PII","value":"106 846 1483","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-11: Mean Dose Received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":287.57,"y":293.61},"width":14.619995,"height":10.0905,"page":203},{"topLeft":{"x":379.51,"y":293.61},"width":14.619995,"height":10.0905,"page":203},{"topLeft":{"x":469.18,"y":293.61},"width":19.044983,"height":10.0905,"page":203}],"sectionNumber":2542,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618435Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786986Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9e088134ec58a373e6bb401bf516126f","type":"PII","value":"100 500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-10: Intergroup comparison of bodyweight change - selected timepoints (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.98,"y":704.06},"width":14.619995,"height":10.018499,"page":203},{"topLeft":{"x":208.61,"y":704.06},"width":14.619995,"height":10.018499,"page":203},{"topLeft":{"x":252.41,"y":704.06},"width":19.044983,"height":10.018499,"page":203},{"topLeft":{"x":296.21,"y":704.06},"width":19.044983,"height":10.018499,"page":203}],"sectionNumber":2537,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618435Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786986Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bd44859604c476d218dbafe385a4d89b","type":"PII","value":"100 500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-11: Mean Dose Received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":195.65,"y":340.77},"width":14.619995,"height":10.018499,"page":203},{"topLeft":{"x":287.57,"y":340.77},"width":14.619995,"height":10.018499,"page":203},{"topLeft":{"x":377.23,"y":340.77},"width":19.044983,"height":10.018499,"page":203},{"topLeft":{"x":469.18,"y":340.77},"width":19.044983,"height":10.018499,"page":203}],"sectionNumber":2540,"textBefore":null,"textAfter":null,"comments":null,"startOffset":28,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618435Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786986Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6454f83fd07d9765cf9f0632c1a3e06c","type":"PII","value":"100 500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-10: Intergroup comparison of bodyweight change - selected timepoints (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.39,"y":704.06},"width":14.619995,"height":10.018499,"page":203},{"topLeft":{"x":420.19,"y":704.06},"width":14.619995,"height":10.018499,"page":203},{"topLeft":{"x":464.02,"y":704.06},"width":19.044983,"height":10.018499,"page":203},{"topLeft":{"x":500.5,"y":704.06},"width":19.044983,"height":10.018499,"page":203}],"sectionNumber":2537,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618436Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786986Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a94ae7112c01d9676fd6d971849eadd3","type":"PII","value":"100 500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-12: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":215.45,"y":700.82},"width":14.619995,"height":10.018499,"page":204},{"topLeft":{"x":252.41,"y":700.82},"width":14.619995,"height":10.018499,"page":204},{"topLeft":{"x":285.77,"y":700.82},"width":19.044983,"height":10.018499,"page":204},{"topLeft":{"x":322.87,"y":700.82},"width":19.044983,"height":10.018499,"page":204}],"sectionNumber":2545,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618436Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786987Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"60b58e5efdc4e9c17959bbd01d31cc08","type":"PII","value":"100 500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-12: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.63,"y":700.82},"width":14.619995,"height":10.018499,"page":204},{"topLeft":{"x":437.62,"y":700.82},"width":14.619995,"height":10.018499,"page":204},{"topLeft":{"x":472.42,"y":700.82},"width":53.36496,"height":10.018499,"page":204}],"sectionNumber":2545,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618436Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786987Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6c33c70eebbbc477aff9612897a325c4","type":"PII","value":"(31-40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-13: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":690.796,"y":346.07},"width":24.96399,"height":10.0905,"page":205}],"sectionNumber":2550,"textBefore":"51 (43-60) 36 ","textAfter":") 16 (11-23)","comments":null,"startOffset":806,"endOffset":812,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618437Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786987Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2c1d80d3540a2b5b1cb8b1f17e683658","type":"PII","value":"(108-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-13: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":605.473,"y":288.59},"width":33.958008,"height":10.0905,"page":205}],"sectionNumber":2550,"textBefore":"4.2 (3.2-5.1) 115 ","textAfter":") 2.04 (1.02-2.81)","comments":null,"startOffset":697,"endOffset":705,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618437Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786988Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d87f0b0da6b0e3a122291332badfb9ab","type":"PII","value":"(46-61","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-13: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":601.036,"y":360.35},"width":24.96399,"height":10.0905,"page":205}],"sectionNumber":2550,"textBefore":"12.16 (8.06-18.11) 53 ","textAfter":") 34 (29-40)","comments":null,"startOffset":635,"endOffset":641,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618437Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786988Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1428ac809cb20d2399cf17c3393eadfe","type":"PII","value":"(102-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-13: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":695.23303,"y":288.59},"width":33.958008,"height":10.0905,"page":205}],"sectionNumber":2550,"textBefore":"3.9 (3.1-4.9) 115 ","textAfter":") 2.21 (1.36-3.80)","comments":null,"startOffset":857,"endOffset":865,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618437Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786988Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"efaf1c7778875d42332c5ff86fd64db1","type":"PII","value":"(11-23","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-13: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":690.796,"y":331.67},"width":24.96399,"height":10.0905,"page":205}],"sectionNumber":2550,"textBefore":"36 (31-40) 16 ","textAfter":") 2.4 (1.5-3.2)","comments":null,"startOffset":817,"endOffset":823,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618437Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786988Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5b7e9dbf098351b6786ddb2d27f94352","type":"PII","value":"(29-40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-13: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":601.036,"y":346.07},"width":24.96399,"height":10.0905,"page":205}],"sectionNumber":2550,"textBefore":"53 (46-61) 34 ","textAfter":") 19 (14-27)","comments":null,"startOffset":646,"endOffset":652,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618437Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786989Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3d06b807ff41d130036330673da749a5","type":"PII","value":"06-18","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-13: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":621.907,"y":381.23},"width":22.087036,"height":10.0905,"page":205}],"sectionNumber":2550,"textBefore":"(0.31-2.85) 12.16 (8.","textAfter":".11) 53 (46-61)","comments":null,"startOffset":622,"endOffset":627,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618438Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786989Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c3cd7cad6f0273b9e3b0c7efcc62c08a","type":"PII","value":"56-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-13: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":711.667,"y":381.23},"width":22.087036,"height":10.0905,"page":205}],"sectionNumber":2550,"textBefore":"(0.39-3.15) 11.09 (5.","textAfter":".01) 51 (43-60)","comments":null,"startOffset":782,"endOffset":787,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618438Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786989Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e4953aa33ecba2ad6ce3fa17c7bc0b64","type":"PII","value":"(14-27","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-13: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":601.036,"y":331.67},"width":24.96399,"height":10.0905,"page":205}],"sectionNumber":2550,"textBefore":"34 (29-40) 19 ","textAfter":") 1.9 (1.3-2.8)","comments":null,"startOffset":657,"endOffset":663,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618438Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786989Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"607be952f70e183698c84037f42695e3","type":"PII","value":"100 500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-13: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":154.94,"y":424.82},"width":14.619995,"height":10.018499,"page":205},{"topLeft":{"x":197.42,"y":424.82},"width":14.619995,"height":10.018499,"page":205},{"topLeft":{"x":240.02,"y":424.82},"width":19.044998,"height":10.018499,"page":205},{"topLeft":{"x":299.93,"y":424.82},"width":19.044983,"height":10.018499,"page":205}],"sectionNumber":2549,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618438Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786989Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de47483b7a2b5753867ede5b46ce1d25","type":"PII","value":"(43-60","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-13: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":690.796,"y":360.35},"width":24.96399,"height":10.0905,"page":205}],"sectionNumber":2550,"textBefore":"11.09 (5.56-15.01) 51 ","textAfter":") 36 (31-40)","comments":null,"startOffset":795,"endOffset":801,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618438Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78699Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4f745dd3d4c5f5146143880c0bc8368d","type":"PII","value":"100 500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-13: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":397.85,"y":424.82},"width":14.619995,"height":10.018499,"page":205},{"topLeft":{"x":443.95,"y":424.82},"width":14.619995,"height":10.018499,"page":205},{"topLeft":{"x":491.35,"y":424.82},"width":19.044983,"height":10.018499,"page":205},{"topLeft":{"x":545.71,"y":424.82},"width":19.045044,"height":10.018499,"page":205}],"sectionNumber":2549,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618438Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78699Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a1cf7cfcc0f38a8d4f740dd4a0574311","type":"PII","value":"100 500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-14: Intergroup comparison of liver weights","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.51,"y":426.35},"width":14.619995,"height":10.018499,"page":206},{"topLeft":{"x":437.62,"y":426.35},"width":14.619995,"height":10.018499,"page":206},{"topLeft":{"x":472.42,"y":426.35},"width":53.244965,"height":10.018499,"page":206}],"sectionNumber":2554,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618438Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78699Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6412d4547500fd16a4d6c9b6c9a7deb3","type":"PII","value":"100 500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-15: Intergroup comparison of selected microscopic findings","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":241.13,"y":182.22003},"width":14.619995,"height":10.018499,"page":206},{"topLeft":{"x":274.61,"y":182.22003},"width":14.619995,"height":10.018499,"page":206},{"topLeft":{"x":307.97,"y":182.22003},"width":52.544983,"height":10.018499,"page":206}],"sectionNumber":2559,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618438Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78699Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7594ec7259fbc55d9fb90de35e768aed","type":"PII","value":"100 500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-14: Intergroup comparison of liver weights","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":215.45,"y":426.35},"width":14.619995,"height":10.018499,"page":206},{"topLeft":{"x":252.53,"y":426.35},"width":14.619995,"height":10.018499,"page":206},{"topLeft":{"x":287.33,"y":426.35},"width":19.044983,"height":10.018499,"page":206},{"topLeft":{"x":324.31,"y":426.35},"width":19.044983,"height":10.018499,"page":206}],"sectionNumber":2554,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618439Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78699Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2aefedab511e987dfe49a32da29dad14","type":"PII","value":"100 500 4000 7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-15: Intergroup comparison of selected microscopic findings","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.95,"y":182.22003},"width":14.619995,"height":10.018499,"page":206},{"topLeft":{"x":437.38,"y":182.22003},"width":83.125,"height":10.018499,"page":206}],"sectionNumber":2559,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618439Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786991Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dfbdc97cc7db35f8e46ceb290298b766","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":426.3654,"y":588.86},"width":38.05127,"height":10.526819,"page":207}],"sectionNumber":2562,"textBefore":"May 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":240,"endOffset":248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1a02671e0f0a1170ca6c9d467689821b","type":"CBI_address","value":"Sequani Limited, Bromyard Road, Ledbury, Herefordshire, HR8 1LH, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":600.38},"width":352.75262,"height":10.526819,"page":207}],"sectionNumber":2562,"textBefore":"in the Dog. ","textAfter":". Laboratory Report","comments":null,"startOffset":91,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dfa0a7ae14d201a4ea637713bff0a52f","type":"CBI_author","value":"Blunt H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.07887,"y":611.78},"width":35.332245,"height":10.526819,"page":207}],"sectionNumber":2562,"textBefore":"Report: K-CA 5.3.2/05 ","textAfter":" (2015). SYN545974","comments":null,"startOffset":22,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618439Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"075845296ced25795dde89d2dc1974a2","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Sacrifice and pathology:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.56978,"y":509.63},"width":82.552475,"height":11.017679,"page":207}],"sectionNumber":2564,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2801,"endOffset":2818,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"22ebcd52fe1e8ff7d5f9b24ec5fcfaaf","type":"CBI_author","value":"Shearer J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":459.80945,"y":652.34},"width":41.516815,"height":11.017679,"page":207}],"sectionNumber":2564,"textBefore":"(846.3 mg/kg/day). (","textAfter":", 2015) Guidelines:","comments":null,"startOffset":2572,"endOffset":2581,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618439Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2184ea0b528c9a371134ce70f9566439","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":664.46},"width":28.467995,"height":10.018499,"page":209}],"sectionNumber":2566,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61844Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"94e41308f9f7432b8f06880626c3ace3","type":"PII","value":"329-332 345-348 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":283.49,"y":641.06},"width":31.050995,"height":10.0905,"page":210},{"topLeft":{"x":373.51,"y":641.06},"width":31.050995,"height":10.0905,"page":210},{"topLeft":{"x":481.66,"y":641.06},"width":10.059998,"height":10.0905,"page":210}],"sectionNumber":2572,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61844Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786991Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"61a8c36ef38e51095910992f8874d9bc","type":"PII","value":"325-328 341-344","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":283.49,"y":660.98},"width":31.050995,"height":10.0905,"page":210},{"topLeft":{"x":373.51,"y":660.98},"width":31.050995,"height":10.0905,"page":210}],"sectionNumber":2571,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61844Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786991Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c9159c991694bbbc0483bee85484460c","type":"PII","value":"337-340 353-356 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":283.49,"y":597.86},"width":31.050995,"height":10.0905,"page":210},{"topLeft":{"x":373.51,"y":597.86},"width":31.050995,"height":10.0905,"page":210},{"topLeft":{"x":477.1,"y":597.86},"width":19.044983,"height":10.0905,"page":210}],"sectionNumber":2574,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61844Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786992Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4f4ee3ec3c53fd0a452b001f72cda453","type":"PII","value":"333-336 349-352 300","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":283.49,"y":621.02},"width":31.050995,"height":10.0905,"page":210},{"topLeft":{"x":373.51,"y":621.02},"width":31.050995,"height":10.0905,"page":210},{"topLeft":{"x":479.38,"y":621.02},"width":14.619995,"height":10.0905,"page":210}],"sectionNumber":2573,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61844Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786992Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8f1e5d4f5889e12a06fbca873f2b02e3","type":"PII","value":"43 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-16: Intergroup comparison of bodyweight and weight change - selected timepoints (kg)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":256.358,"y":143.34003},"width":10.053986,"height":10.0905,"page":213},{"topLeft":{"x":292.61,"y":143.34003},"width":10.053986,"height":10.0905,"page":213}],"sectionNumber":2594,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618441Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786993Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6da900eb2c6c82ceaf6f6c28c0932ac5","type":"PII","value":"45 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-16: Intergroup comparison of bodyweight and weight change - selected timepoints (kg)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":168.488,"y":216.89996},"width":10.054001,"height":10.0905,"page":213},{"topLeft":{"x":201.17,"y":216.89996},"width":10.054001,"height":10.0905,"page":213}],"sectionNumber":2589,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618441Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786993Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f1d24da5523f70a9760a4d22d9ba1b14","type":"CBI_author","value":"Arena","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":112.448135,"y":262.52997},"width":30.289139,"height":10.929359,"page":214}],"sectionNumber":2652,"textBefore":"< 0.05] Standard ","textAfter":" Observations (Functional","comments":null,"startOffset":2781,"endOffset":2786,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618441Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"caece2938bcb27724b339f1f3494ed8d","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":106.095,"y":290.49},"width":30.106003,"height":10.0905,"page":214}],"sectionNumber":2652,"textBefore":"[d - Test: ","textAfter":" 2 Sided","comments":null,"startOffset":2746,"endOffset":2753,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618441Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78e235a4014228b9b83920d23ae6d61d","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":318.52103,"y":84.784},"width":30.105988,"height":10.0905,"page":215}],"sectionNumber":2652,"textBefore":"[d - Test: ","textAfter":" 2 Sided","comments":null,"startOffset":4460,"endOffset":4467,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618441Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"76188c0144dbbefb29e18ed462861f04","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":106.095,"y":380.85},"width":30.106003,"height":10.0905,"page":215}],"sectionNumber":2652,"textBefore":"[d - Test: ","textAfter":" 2 Sided","comments":null,"startOffset":4291,"endOffset":4298,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618441Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c5b6395e87c18ad84faaa6860ffc66f","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":287.68103,"y":380.85},"width":29.989014,"height":10.0905,"page":215}],"sectionNumber":2652,"textBefore":"[dd - Test: ","textAfter":" 2 Sided","comments":null,"startOffset":4331,"endOffset":4338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618441Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"61c5b6c54e185e703f0f9c3e21d5412d","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":110.655,"y":84.784},"width":29.989014,"height":10.0905,"page":215}],"sectionNumber":2652,"textBefore":"[dd - Test: ","textAfter":" 2 Sided","comments":null,"startOffset":4421,"endOffset":4428,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618442Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c3fe4ce77faa070c3a6141b6d5be7552","type":"PII","value":"30 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-21: Intergroup comparison of selected microscopic findings","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":275.09,"y":372.57},"width":10.059998,"height":10.018499,"page":217},{"topLeft":{"x":303.41,"y":372.57},"width":14.619995,"height":10.018499,"page":217},{"topLeft":{"x":338.95,"y":372.57},"width":19.044983,"height":10.018499,"page":217}],"sectionNumber":2683,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618442Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786993Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"91f55ab0b6a9e050a3bc99ca0a50abd5","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":106.095,"y":575.63},"width":30.106003,"height":10.0905,"page":217}],"sectionNumber":2688,"textBefore":"[d - Test: ","textAfter":" 2 Sided","comments":null,"startOffset":1095,"endOffset":1102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618442Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ecca30296b783b40a03410ec1223dd1","type":"PII","value":"30 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-21: Intergroup comparison of selected microscopic findings","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.95,"y":372.57},"width":10.059998,"height":10.018499,"page":217},{"topLeft":{"x":437.5,"y":372.57},"width":47.484985,"height":10.018499,"page":217}],"sectionNumber":2683,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618442Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786994Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eb38ce790b22873a042669bd99f710d3","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":287.68103,"y":575.63},"width":29.989014,"height":10.0905,"page":217}],"sectionNumber":2688,"textBefore":"[dd - Test: ","textAfter":" 2 Sided","comments":null,"startOffset":1135,"endOffset":1142,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618442Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"030d46d69afaa61a227936a27f218743","type":"CBI_author","value":"Blunt H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":465.32944,"y":78.400024},"width":36.195526,"height":11.017679,"page":217}],"sectionNumber":2688,"textBefore":"and non-adverse. (","textAfter":", 2015) There","comments":null,"startOffset":2961,"endOffset":2968,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618442Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8856f5d69ad1e485194041801b3a6945","type":"CBI_author","value":"Blunt H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.52255,"y":699.26},"width":35.40857,"height":10.526819,"page":218}],"sectionNumber":2686,"textBefore":"Report: K-CA 5.3.2/06. ","textAfter":" (2015a). SYN545974","comments":null,"startOffset":23,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618442Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a46bfddd8aab487042424f4a7d288b13","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":469.16357,"y":676.22},"width":38.160828,"height":10.526819,"page":218}],"sectionNumber":2686,"textBefore":"May 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":252,"endOffset":260,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618443Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"02ac7d64770053692f7bba4d4a0eb48f","type":"CBI_address","value":"Sequani Limited, Bromyard Road, Ledbury, Herefordshire, HR8 1LH, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":170.6222,"y":687.74},"width":312.55908,"height":10.526819,"page":218},{"topLeft":{"x":133.82,"y":676.22},"width":38.838043,"height":10.526819,"page":218}],"sectionNumber":2686,"textBefore":"in the Dog. ","textAfter":". Laboratory Report","comments":null,"startOffset":103,"endOffset":182,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618443Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f090ed541239c75163ea034db7ff1d3","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Sacrifice and pathology:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.56978,"y":598.22},"width":82.552475,"height":11.017679,"page":218}],"sectionNumber":2688,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3342,"endOffset":3359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618443Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"72daa465b84b530cffbd8eb93d59ec94","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":639.14},"width":28.467995,"height":10.018499,"page":219}],"sectionNumber":2690,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618443Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a8cd5c5c785fe20afda9465dee67e1ba","type":"PII","value":"233 300","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.27,"y":607.7},"width":14.490997,"height":10.0905,"page":220},{"topLeft":{"x":478.9,"y":607.7},"width":14.619995,"height":10.0905,"page":220}],"sectionNumber":2699,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618443Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786994Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"57a585b7e62c898a28cccb44cf6ac23f","type":"PII","value":"234 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.35098,"y":630.86},"width":14.490997,"height":10.0905,"page":220},{"topLeft":{"x":478.9,"y":630.86},"width":14.619995,"height":10.0905,"page":220}],"sectionNumber":2698,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618443Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786995Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fda0ad66e866349cdf0bfa2a58b2cbe4","type":"PII","value":"225 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.27,"y":650.78},"width":14.490997,"height":10.0905,"page":220},{"topLeft":{"x":481.18,"y":650.78},"width":10.059998,"height":10.0905,"page":220}],"sectionNumber":2697,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618443Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786995Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c86cd81adb3c826e567621277c2cc969","type":"PII","value":"209 222","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":306.41,"y":650.78},"width":14.490997,"height":10.0905,"page":220},{"topLeft":{"x":373.27,"y":650.78},"width":14.607971,"height":10.0905,"page":220}],"sectionNumber":2697,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618444Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786995Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"73ddafca4734982fe85ea9f3e545dd2e","type":"PII","value":"213 227","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":306.41,"y":630.86},"width":14.490997,"height":10.0905,"page":220},{"topLeft":{"x":364.27,"y":630.86},"width":14.607971,"height":10.0905,"page":220}],"sectionNumber":2698,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618444Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786995Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b09ccdaf1ad86480e0bbf8a289e633a2","type":"PII","value":"217 230","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":306.41,"y":607.7},"width":14.490997,"height":10.0905,"page":220},{"topLeft":{"x":373.27,"y":607.7},"width":14.607971,"height":10.0905,"page":220}],"sectionNumber":2699,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618444Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786995Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6f62b91f44600eafa4c3623f9ed5495b","type":"PII","value":"205 218","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":306.41,"y":670.7},"width":14.490997,"height":10.0905,"page":220},{"topLeft":{"x":373.27,"y":670.7},"width":14.607971,"height":10.0905,"page":220}],"sectionNumber":2696,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618444Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786996Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d14098d6c324b21682aaf8a6dd9d8af","type":"PII","value":"43 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-22: Intergroup comparison of bodyweight and weight change - selected timepoints (kg)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":301.352,"y":320.37},"width":9.937012,"height":10.0905,"page":223},{"topLeft":{"x":343.39,"y":320.37},"width":10.053986,"height":10.0905,"page":223}],"sectionNumber":2720,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618445Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786996Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"60cc75196a4f8cf1fa8019beb8dd7e17","type":"PII","value":"45 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-22: Intergroup comparison of bodyweight and weight change - selected timepoints (kg)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":301.352,"y":394.05},"width":9.937012,"height":10.0905,"page":223},{"topLeft":{"x":343.39,"y":394.05},"width":10.053986,"height":10.0905,"page":223}],"sectionNumber":2715,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618445Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786996Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c6139340b01b9615edd9a55fe206e110","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.72101,"y":247.26001},"width":30.105988,"height":10.0905,"page":224}],"sectionNumber":2748,"textBefore":"[d - Test: ","textAfter":" 2 Sided","comments":null,"startOffset":3227,"endOffset":3234,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618445Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b855f3378e5bfd66c0210be218733fa0","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":110.655,"y":247.26001},"width":29.989014,"height":10.0905,"page":224}],"sectionNumber":2748,"textBefore":"[dd - Test: ","textAfter":" 2 Sided","comments":null,"startOffset":3188,"endOffset":3195,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618445Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a98f1ba778f302cde428959526a1ca1","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":106.095,"y":255.21002},"width":30.106003,"height":10.0905,"page":225}],"sectionNumber":2772,"textBefore":"[d - Test: ","textAfter":" 2 Sided","comments":null,"startOffset":1328,"endOffset":1335,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618445Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"23a3f2902de14d7e2aafe00c53b5dd12","type":"PII","value":"31 345","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-24: Organ Weights - Absolute, Adjusted and % Body Weight - Group Mean Values","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.74298,"y":446.03},"width":9.937012,"height":10.0905,"page":225},{"topLeft":{"x":322.15,"y":444.95},"width":14.607971,"height":10.0905,"page":225}],"sectionNumber":2758,"textBefore":null,"textAfter":null,"comments":null,"startOffset":45,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618445Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786997Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"65cb75fe62ae7023b50aa4ca51dac005","type":"PII","value":"21 377","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-24: Organ Weights - Absolute, Adjusted and % Body Weight - Group Mean Values","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":337.96298,"y":444.95},"width":9.937012,"height":10.0905,"page":225},{"topLeft":{"x":366.79,"y":446.03},"width":14.607971,"height":10.0905,"page":225}],"sectionNumber":2758,"textBefore":null,"textAfter":null,"comments":null,"startOffset":52,"endOffset":58,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618446Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786997Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"749290370479b9775cacf6cf5845cce7","type":"PII","value":"70 464","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-24: Organ Weights - Absolute, Adjusted and % Body Weight - Group Mean Values","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":425.68298,"y":446.03},"width":39.504974,"height":9.85051,"page":225}],"sectionNumber":2758,"textBefore":null,"textAfter":null,"comments":null,"startOffset":66,"endOffset":72,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618446Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786997Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"815b20e3cdd271269159314b709d0652","type":"PII","value":"24 330","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-24: Organ Weights - Absolute, Adjusted and % Body Weight - Group Mean Values","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":382.603,"y":446.03},"width":9.937012,"height":10.0905,"page":225},{"topLeft":{"x":409.87,"y":446.03},"width":14.607971,"height":10.0905,"page":225}],"sectionNumber":2758,"textBefore":null,"textAfter":null,"comments":null,"startOffset":59,"endOffset":65,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618446Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786998Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e73a160b4e5a45c4944d2569dfd37388","type":"PII","value":"07 297","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-24: Organ Weights - Absolute, Adjusted and % Body Weight - Group Mean Values","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":207.02301,"y":446.03},"width":9.936996,"height":10.0905,"page":225},{"topLeft":{"x":234.41,"y":446.03},"width":14.608002,"height":10.0905,"page":225}],"sectionNumber":2758,"textBefore":null,"textAfter":null,"comments":null,"startOffset":31,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618446Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786998Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c4f605621e5d30421cfcb88661df49e0","type":"PII","value":"78 398","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-24: Organ Weights - Absolute, Adjusted and % Body Weight - Group Mean Values","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.223,"y":446.03},"width":9.936996,"height":10.0905,"page":225},{"topLeft":{"x":278.93,"y":446.03},"width":14.607971,"height":10.0905,"page":225}],"sectionNumber":2758,"textBefore":null,"textAfter":null,"comments":null,"startOffset":38,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618446Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786998Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5b046b7a33262ab24db14155f111a1d2","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":287.68103,"y":255.21002},"width":29.989014,"height":10.0905,"page":225}],"sectionNumber":2772,"textBefore":"[dd - Test: ","textAfter":" 2 Sided","comments":null,"startOffset":1368,"endOffset":1375,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618446Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"48e437fac317b1c663f622fbd9258396","type":"PII","value":"75 313","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-24: Organ Weights - Absolute, Adjusted and % Body Weight - Group Mean Values","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":206.30301,"y":490.31},"width":9.936996,"height":10.0905,"page":225},{"topLeft":{"x":234.41,"y":490.31},"width":14.608002,"height":10.0905,"page":225}],"sectionNumber":2755,"textBefore":null,"textAfter":null,"comments":null,"startOffset":30,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618446Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786998Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f9e43e3a78b03cbb145d508c3935711f","type":"PII","value":"85 324","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-24: Organ Weights - Absolute, Adjusted and % Body Weight - Group Mean Values","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.02298,"y":490.31},"width":9.937012,"height":10.0905,"page":225},{"topLeft":{"x":322.15,"y":490.31},"width":14.607971,"height":10.0905,"page":225}],"sectionNumber":2755,"textBefore":null,"textAfter":null,"comments":null,"startOffset":44,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618446Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786999Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"099a9dc851531ccc1a80b41d61ec0a29","type":"PII","value":"53 369","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-24: Organ Weights - Absolute, Adjusted and % Body Weight - Group Mean Values","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.223,"y":490.31},"width":9.936996,"height":10.0905,"page":225},{"topLeft":{"x":278.21,"y":490.31},"width":14.607971,"height":10.0905,"page":225}],"sectionNumber":2755,"textBefore":null,"textAfter":null,"comments":null,"startOffset":37,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618447Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786999Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2efdf7c3830a95c88c149d29518fd475","type":"PII","value":"20 371","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-24: Organ Weights - Absolute, Adjusted and % Body Weight - Group Mean Values","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":337.96298,"y":490.31},"width":9.937012,"height":10.0905,"page":225},{"topLeft":{"x":366.07,"y":490.31},"width":14.607971,"height":10.0905,"page":225}],"sectionNumber":2755,"textBefore":null,"textAfter":null,"comments":null,"startOffset":51,"endOffset":57,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618447Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786999Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f8c364b15ec8e38bbca731dff9b86fbd","type":"PII","value":"68 339","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-24: Organ Weights - Absolute, Adjusted and % Body Weight - Group Mean Values","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":381.883,"y":490.31},"width":9.937012,"height":10.0905,"page":225},{"topLeft":{"x":409.87,"y":490.31},"width":14.607971,"height":10.0905,"page":225}],"sectionNumber":2755,"textBefore":null,"textAfter":null,"comments":null,"startOffset":58,"endOffset":64,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618447Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786999Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"246e3f3aa4a719560843cb5448b2e2d6","type":"PII","value":"63 468","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-24: Organ Weights - Absolute, Adjusted and % Body Weight - Group Mean Values","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":425.68298,"y":490.31},"width":9.937012,"height":10.0905,"page":225},{"topLeft":{"x":453.82,"y":490.31},"width":14.607971,"height":10.0905,"page":225}],"sectionNumber":2755,"textBefore":null,"textAfter":null,"comments":null,"startOffset":65,"endOffset":71,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618447Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.786999Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"607a241bb5b439bc66d1b1c037ef98b2","type":"PII","value":"33 376","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-24: Organ Weights - Absolute, Adjusted and % Body Weight - Group Mean Values","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":469.633,"y":490.31},"width":9.937012,"height":10.0905,"page":225},{"topLeft":{"x":498.58,"y":490.31},"width":14.608002,"height":10.0905,"page":225}],"sectionNumber":2755,"textBefore":null,"textAfter":null,"comments":null,"startOffset":72,"endOffset":78,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618447Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1045a736bc75410f5a3480e12b3c1062","type":"CBI_author","value":"Sieber M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.3.3. Other routes","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.27777,"y":629.06},"width":40.989426,"height":10.526819,"page":226}],"sectionNumber":2773,"textBefore":"Report: K-CA 5.3.3/01. ","textAfter":" (2013). SYN545974:","comments":null,"startOffset":23,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618447Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0a3d06ef7a403625bbf649bcdfdd07cb","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.3.3. Other routes","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":215.96306,"y":527.51},"width":82.552475,"height":11.017679,"page":226}],"sectionNumber":2775,"textBefore":null,"textAfter":null,"comments":null,"startOffset":467,"endOffset":484,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618447Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d8f9a7566f4c1de79d1f2e1078b11408","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.3.3. Other routes","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":132.38,"y":594.62},"width":38.051224,"height":10.526819,"page":226}],"sectionNumber":2773,"textBefore":"January 2013. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":264,"endOffset":272,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618447Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae82fcf5aa7cbadd56049b2c2fbc5cb1","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.79282,"y":440.87},"width":19.337433,"height":11.017679,"page":226}],"sectionNumber":2776,"textBefore":"male and female ","textAfter":"-Wistar rats were","comments":null,"startOffset":84,"endOffset":87,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618447Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"103ea376a8bbb26386e2ab80a3618ae6","type":"CBI_author","value":"Blunt H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.40945,"y":753.5},"width":36.195526,"height":11.017679,"page":226}],"sectionNumber":2772,"textBefore":"mg/kg bw/day. (","textAfter":", 2015a)","comments":null,"startOffset":2392,"endOffset":2399,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618448Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4abbf025cab761aa56b8ba9ef28e3e41","type":"CBI_address","value":"Harlan Laboratories Ltd., Zelgliweg 1, 4452 Itingen, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.3.3. Other routes","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":284.00116,"y":617.54},"width":228.19781,"height":10.526819,"page":226},{"topLeft":{"x":132.38,"y":606.14},"width":48.55899,"height":10.526819,"page":226}],"sectionNumber":2773,"textBefore":"Report Amendment 1). ","textAfter":". Laboratory Report","comments":null,"startOffset":127,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618448Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5e5014774db667c3d4d792e6fa74c1c7","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: The no observed adverse effect level (NOAEL) for dermal treatment with SYN545974 in the Wistar\nrat for 28 days is 1000 mg/kg body weight /day.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":671.06},"width":28.467995,"height":10.018499,"page":227}],"sectionNumber":2777,"textBefore":null,"textAfter":null,"comments":null,"startOffset":95,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618448Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bf7354ed095d71feec5f456bd9f1f843","type":"PII","value":"30-70","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: The no observed adverse effect level (NOAEL) for dermal treatment with SYN545974 in the Wistar\nrat for 28 days is 1000 mg/kg body weight /day.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.65399,"y":478.67},"width":22.093002,"height":10.0905,"page":227}],"sectionNumber":2778,"textBefore":"3 °C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":590,"endOffset":595,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618448Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787001Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9af096407c0407cb60ae7a08614addb2","type":"CBI_address","value":"Harlan Teklad","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: The no observed adverse effect level (NOAEL) for dermal treatment with SYN545974 in the Wistar\nrat for 28 days is 1000 mg/kg body weight /day.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":257.393,"y":521.63},"width":53.389038,"height":10.0905,"page":227}],"sectionNumber":2778,"textBefore":"Pelleted standard ","textAfter":" 2914C rodent","comments":null,"startOffset":344,"endOffset":357,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618448Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb83dbbe708f8db133020e834cbee786","type":"PII","value":"10-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: The no observed adverse effect level (NOAEL) for dermal treatment with SYN545974 in the Wistar\nrat for 28 days is 1000 mg/kg body weight /day.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":239.28502,"y":468.35},"width":22.218979,"height":10.0905,"page":227}],"sectionNumber":2778,"textBefore":"30-70% Air changes: ","textAfter":" per hour","comments":null,"startOffset":610,"endOffset":615,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618448Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787001Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a1812a72c1516a1d2c61718b024da8e1","type":"PII","value":"100 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.25,"y":307.64996},"width":14.619995,"height":10.0905,"page":227},{"topLeft":{"x":354.55,"y":307.64996},"width":10.059998,"height":10.0905,"page":227},{"topLeft":{"x":468.82,"y":307.64996},"width":10.059998,"height":10.0905,"page":227}],"sectionNumber":2783,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618448Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787001Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"50e77d6fc16edcfd81515b1f138295cb","type":"PII","value":"1000 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.97,"y":277.40997},"width":19.044998,"height":10.0905,"page":227},{"topLeft":{"x":354.55,"y":277.40997},"width":10.059998,"height":10.0905,"page":227},{"topLeft":{"x":468.82,"y":277.40997},"width":10.059998,"height":10.0905,"page":227}],"sectionNumber":2785,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618448Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787001Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"98fd99d6f06ab1b032b6653a953ba197","type":"PII","value":"300 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.25,"y":292.52997},"width":14.619995,"height":10.0905,"page":227},{"topLeft":{"x":354.55,"y":292.52997},"width":10.059998,"height":10.0905,"page":227},{"topLeft":{"x":468.82,"y":292.52997},"width":10.059998,"height":10.0905,"page":227}],"sectionNumber":2784,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618449Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787002Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3bf9dfb25c4fca034897f12c9f409e97","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.3-1: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.13,"y":345.57},"width":14.619995,"height":10.018499,"page":231},{"topLeft":{"x":293.33,"y":345.57},"width":14.619995,"height":10.018499,"page":231},{"topLeft":{"x":337.63,"y":345.57},"width":19.044983,"height":10.018499,"page":231}],"sectionNumber":2799,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618449Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787003Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f8a7b30de7185ef1c70121e6d38f5466","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.3-1: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":415.63,"y":345.57},"width":14.619995,"height":10.018499,"page":231},{"topLeft":{"x":458.86,"y":345.57},"width":14.619995,"height":10.018499,"page":231},{"topLeft":{"x":500.38,"y":345.57},"width":19.044983,"height":10.018499,"page":231}],"sectionNumber":2799,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618449Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787003Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cb0cb42d04b31eca9f960bd0481faff8","type":"CBI_author","value":"Sieber M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":459.80945,"y":753.5},"width":41.638306,"height":11.017679,"page":232}],"sectionNumber":2808,"textBefore":"weight /day. (","textAfter":", 2013)","comments":null,"startOffset":602,"endOffset":610,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61845Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9e94e62cb1d52c67a0746444fe9c4074","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":127.19758,"y":98.70001},"width":27.385597,"height":11.017679,"page":233}],"sectionNumber":2823,"textBefore":null,"textAfter":null,"comments":null,"startOffset":212,"endOffset":218,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61845Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b79233ef24d374a0d78165d65051ab8d","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":69.504,"y":522.95},"width":23.112999,"height":10.0905,"page":233}],"sectionNumber":2814,"textBefore":null,"textAfter":null,"comments":null,"startOffset":61,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61845Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"33a453a7516cf326618aa4a7b6c0916e","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":69.504,"y":620.42},"width":23.112999,"height":10.0905,"page":233}],"sectionNumber":2812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618451Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b1ff25a89a482829add3570e945ea381","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":69.504,"y":419.01},"width":23.112999,"height":10.0905,"page":233}],"sectionNumber":2817,"textBefore":null,"textAfter":null,"comments":null,"startOffset":38,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618451Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e2a10bd2b326b30ef1cf8de3bcbe50ce","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.4.1. In vitro studies","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":215.96306,"y":210.65997},"width":82.552475,"height":11.017679,"page":233}],"sectionNumber":2822,"textBefore":null,"textAfter":null,"comments":null,"startOffset":199,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618451Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24254eb40fac34121457c1a0ca824a66","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":69.504,"y":663.98},"width":23.112999,"height":10.0905,"page":233}],"sectionNumber":2811,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618451Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dfbdbac10406c6257fc1d3fd49dd5bd7","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":69.504,"y":462.59},"width":23.112999,"height":10.0905,"page":233}],"sectionNumber":2816,"textBefore":null,"textAfter":null,"comments":null,"startOffset":38,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618451Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f80f604beb945aa41fced5468615b9af","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":69.504,"y":576.83},"width":23.112999,"height":10.0905,"page":233}],"sectionNumber":2813,"textBefore":null,"textAfter":null,"comments":null,"startOffset":43,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618452Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"44b7c5ba5f22745544017617672ff8b9","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.4.1. In vitro studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":207.76544,"y":312.21002},"width":66.068665,"height":10.526819,"page":233}],"sectionNumber":2820,"textBefore":"Report: K-CA 5.4.1/01 ","textAfter":" (2012). SYN545974:","comments":null,"startOffset":22,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618452Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5c1116ebb9b002ef4806b52a5b695fd5","type":"CBI_author","value":"Bohnenberger S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":603.62},"width":59.247955,"height":10.0905,"page":233}],"sectionNumber":2813,"textBefore":null,"textAfter":" (2013) Harlan","comments":null,"startOffset":171,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618453Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5a498478cc2fa09625c1b406838c4925","type":"CBI_author","value":"Roth M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":489.23},"width":28.78302,"height":10.0905,"page":233}],"sectionNumber":2816,"textBefore":null,"textAfter":" (2012) Harlan","comments":null,"startOffset":71,"endOffset":77,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618453Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2bef231b39811946913e693c692681f6","type":"CBI_address","value":"Harlan, Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.4.1. In vitro studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":315.5104,"y":300.69},"width":197.21213,"height":10.526819,"page":233},{"topLeft":{"x":133.82,"y":289.16998},"width":273.1424,"height":10.526819,"page":233}],"sectionNumber":2820,"textBefore":"Reverse Mutation Assay. ","textAfter":". Laboratory Report","comments":null,"startOffset":123,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618454Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"05c7ee4a038f939061bea70b599e407e","type":"CBI_author","value":"Sokolowski A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":690.62},"width":52.218994,"height":10.0905,"page":233}],"sectionNumber":2811,"textBefore":null,"textAfter":" (2012) Harlan","comments":null,"startOffset":98,"endOffset":110,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618454Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d3d3f099340af74350db44fb1459c36","type":"CBI_author","value":"Wollny H-E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":554.87},"width":45.169006,"height":10.0905,"page":233}],"sectionNumber":2814,"textBefore":null,"textAfter":" (2013) Harlan","comments":null,"startOffset":146,"endOffset":156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618454Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b921618b23321357ae2c5ecf7bf90702","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":72.501,"y":636.74},"width":21.906998,"height":10.0905,"page":233}],"sectionNumber":2812,"textBefore":"mutation assay (","textAfter":") Purity 96.7%","comments":null,"startOffset":26,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618454Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cd7703a850fb62b9bc26a2c72dbaa3c9","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.4.1. In vitro studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":301.83536,"y":277.64996},"width":38.160828,"height":10.526819,"page":233}],"sectionNumber":2820,"textBefore":"October 2012. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":287,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618454Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1e9fc62437601317891add47cf4842aa","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":72.501,"y":680.3},"width":21.906998,"height":10.0905,"page":233}],"sectionNumber":2811,"textBefore":"mutation assay (","textAfter":") Purity 98.5%","comments":null,"startOffset":26,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618455Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ef84702fde43dc75b87a1fdc8dc56f15","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":418.53},"width":28.467995,"height":10.018499,"page":234}],"sectionNumber":2824,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618455Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b48bd3f35a91b9b7361c26bbc6b75898","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.8184,"y":577.07},"width":26.513428,"height":11.017679,"page":235}],"sectionNumber":2832,"textBefore":"performed according to ","textAfter":" et al.(1977).","comments":null,"startOffset":1264,"endOffset":1268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618455Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c8cda3f2d70026d296417f877081109a","type":"PII","value":"48-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Protocol:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":339.2318,"y":354.57},"width":26.758179,"height":11.017679,"page":236}],"sectionNumber":2846,"textBefore":"upside down for ","textAfter":" hours at","comments":null,"startOffset":1310,"endOffset":1315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618455Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787006Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c0b5aea0b084440bdd7f5665098d7cfd","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":96.0},"width":317.0,"height":305.0,"page":238}],"sectionNumber":2849,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618455Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ad961ba308ecf3af178058070e48ccbe","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":438.0},"width":298.0,"height":303.0,"page":238}],"sectionNumber":2849,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618456Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2a57ea0abf5b7d33c9847ea5679660b2","type":"CBI_author","value":"Sokolowski A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.81943,"y":690.86},"width":63.662994,"height":11.017679,"page":239}],"sectionNumber":2849,"textBefore":"mutation assay. (","textAfter":", 2012) Guidelines:","comments":null,"startOffset":2760,"endOffset":2772,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618456Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"684e4197de665b7a967c6a7f2799df47","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":65.67999},"width":25.398994,"height":10.018499,"page":239}],"sectionNumber":2851,"textBefore":null,"textAfter":null,"comments":null,"startOffset":79,"endOffset":85,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618456Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"22e0aaa5c39e3ee7bfc89bc8b3989440","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":205.85312,"y":637.94},"width":65.11252,"height":10.526819,"page":239}],"sectionNumber":2847,"textBefore":"Report: K-CA 5.4.1/02 ","textAfter":" (2014). SYN545974","comments":null,"startOffset":22,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618456Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad7dcea13eef38ccf3d0af078fec4bf2","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":273.3098,"y":603.38},"width":38.05127,"height":10.526819,"page":239}],"sectionNumber":2847,"textBefore":"December 2014. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":286,"endOffset":294,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618456Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dfdbf232533e0347a719667527c13acd","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":536.39},"width":82.53038,"height":11.017679,"page":239}],"sectionNumber":2849,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2927,"endOffset":2944,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618457Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2dec5148d01d54a8c060dd567e7c586d","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH, In den Leppsteinswiesen 19, 64380 Rossdorf Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":316.93466,"y":626.42},"width":195.6484,"height":10.526819,"page":239},{"topLeft":{"x":133.82,"y":614.9},"width":193.68625,"height":10.526819,"page":239}],"sectionNumber":2847,"textBefore":"Reverse Mutation Assay. ","textAfter":". Laboratory Report","comments":null,"startOffset":124,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618457Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e6754d27cd98c4529dc00351277c91e8","type":"PII","value":"5000 2500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":205.97,"y":333.69},"width":19.044998,"height":10.0905,"page":242},{"topLeft":{"x":276.05,"y":333.69},"width":19.044983,"height":10.0905,"page":242}],"sectionNumber":2876,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618457Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787007Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"26327292f6b363e8cdb44c84a530c306","type":"PII","value":"1537 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":83.652,"y":333.69},"width":19.162003,"height":10.0905,"page":242},{"topLeft":{"x":180.38,"y":333.69},"width":19.044998,"height":10.0905,"page":242}],"sectionNumber":2876,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618458Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787007Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d9d54f1dba469705395b60cbf6d27c1d","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":80.0},"width":299.0,"height":302.0,"page":243}],"sectionNumber":2884,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618458Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"be258903296f9f27cec4d1a1d20830ff","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":419.0},"width":305.0,"height":322.0,"page":243}],"sectionNumber":2884,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618458Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"651cac7a61a0258297825921ce78ed3d","type":"CBI_author","value":"Sokolowski A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.81943,"y":690.86},"width":63.662994,"height":11.017679,"page":244}],"sectionNumber":2884,"textBefore":"mutation assay. (","textAfter":", 2014) Guidelines:","comments":null,"startOffset":2810,"endOffset":2822,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618458Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b412ed548c9941071590bacbcc1eaca9","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":294.92746,"y":338.61},"width":27.38556,"height":11.017679,"page":244}],"sectionNumber":2885,"textBefore":null,"textAfter":null,"comments":null,"startOffset":736,"endOffset":742,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618458Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e19714f81bcda988752d0b93493f62c3","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":265.97922,"y":604.58},"width":37.94171,"height":10.526819,"page":244}],"sectionNumber":2882,"textBefore":"January 2013. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":291,"endOffset":299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618459Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c3d5adadd309f83c7e902df23d06184","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":265.8921,"y":627.62},"width":246.79303,"height":10.526819,"page":244},{"topLeft":{"x":133.82,"y":616.1},"width":195.24997,"height":10.526819,"page":244}],"sectionNumber":2882,"textBefore":"Lymphocytes In Vitro. ","textAfter":". Laboratory Report","comments":null,"startOffset":116,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618459Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a680f3f6da49da3ef16d1a445dc79b03","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":538.67},"width":82.53038,"height":11.017679,"page":244}],"sectionNumber":2884,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2992,"endOffset":3009,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618459Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"730944a317fe69b6b7518d830607fbc2","type":"CBI_author","value":"Bohnenberger S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.32533,"y":639.02},"width":70.28175,"height":10.526819,"page":244}],"sectionNumber":2882,"textBefore":"Report: K-CA 5.4.1/03 ","textAfter":" (2013). SYN545974","comments":null,"startOffset":22,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618459Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d8a3f29429aa69eda8fbeabc03a3fafe","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":594.62},"width":28.467995,"height":10.018499,"page":245}],"sectionNumber":2887,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618459Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"740da1c0820893ec0cfa528a2003201f","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":187.0},"width":254.0,"height":309.0,"page":248}],"sectionNumber":2928,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61846Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"505abadcc35f81859e56beea620a9883","type":"CBI_author","value":"Bohnenberger S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.29944,"y":419.63},"width":72.28528,"height":11.017679,"page":249}],"sectionNumber":2928,"textBefore":"precipitating concentrations. (","textAfter":", 2013) Guidelines:","comments":null,"startOffset":2324,"endOffset":2338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61846Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3bbbd8bda59972dfad39b417fedec52","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":387.19,"y":355.65},"width":125.72156,"height":10.526819,"page":249},{"topLeft":{"x":133.82,"y":344.13},"width":324.4215,"height":10.526819,"page":249}],"sectionNumber":2926,"textBefore":"Lymphoma L5178Y Cells. ","textAfter":". Laboratory Report","comments":null,"startOffset":146,"endOffset":246,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61846Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb9944d7e8ffb408afaa6059f2974321","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":433.03,"y":332.61},"width":38.05127,"height":10.526819,"page":249}],"sectionNumber":2926,"textBefore":"January 2013. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":321,"endOffset":329,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61846Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f9bae2b89107deea1be1a607a00cfb3","type":"CBI_author","value":"Wollny H.-E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.39308,"y":367.17},"width":53.78247,"height":10.526819,"page":249}],"sectionNumber":2926,"textBefore":"Report: K-CA 5.4.1/04 ","textAfter":" (2013). SYN545974","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618461Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65fc52db37f6a8159591bc57924c4d63","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.56978,"y":255.21002},"width":82.552475,"height":11.017679,"page":249}],"sectionNumber":2928,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2494,"endOffset":2511,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618461Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c90b9881d2787ba692c888ca917b7511","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":593.0},"width":247.0,"height":173.0,"page":249}],"sectionNumber":2928,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618461Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"494e59d5b03943b537a992c21c21f86d","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.464,"y":301.28998},"width":25.398994,"height":10.018499,"page":250}],"sectionNumber":2930,"textBefore":null,"textAfter":null,"comments":null,"startOffset":115,"endOffset":121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618461Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4b1b29a0c26cdf86d2bdf9d3d001bb3b","type":"PII","value":"10-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":169.41457,"y":215.22003},"width":26.725449,"height":11.017679,"page":252}],"sectionNumber":2954,"textBefore":"range of approximately ","textAfter":"% relative total","comments":null,"startOffset":1695,"endOffset":1700,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618462Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78701Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a2887d7313b56c313aa49b3d17f83dbb","type":"CBI_address","value":"SYSTAT Software, Inc., 501, Canal Boulevard, Suite C, Richmond, CA 94804, USA","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Statistical Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":209.91273,"y":740.06},"width":322.77405,"height":11.017679,"page":252},{"topLeft":{"x":64.104,"y":727.34},"width":56.60846,"height":11.017679,"page":252}],"sectionNumber":2953,"textBefore":" 11 (","textAfter":") statistics software.","comments":null,"startOffset":157,"endOffset":234,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618462Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"924b69c37d67caa0ade69835dc2a578d","type":"PII","value":"10-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mutation assay:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":297.72147,"y":338.37},"width":26.748505,"height":11.017679,"page":253}],"sectionNumber":2955,"textBefore":"range of approximately ","textAfter":"% relative total","comments":null,"startOffset":1445,"endOffset":1450,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618462Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78701Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"611748aefc80bbc49a289e5feb429b06","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Mutation assay:","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":84.0},"width":470.0,"height":481.0,"page":254}],"sectionNumber":2955,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618462Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4c9569a1320a6b6c4fbe8e1d398d3bc5","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.4.2. In vivo studies in somatic cells","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":190.85999},"width":82.53038,"height":11.017679,"page":255}],"sectionNumber":2959,"textBefore":null,"textAfter":null,"comments":null,"startOffset":192,"endOffset":209,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618463Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2493935d830d92304e361b43cd96439a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Deviation:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":454.4579,"y":61.599976},"width":38.05127,"height":10.526819,"page":255}],"sectionNumber":2960,"textBefore":"Report no. 300021097. ","textAfter":" File No.","comments":null,"startOffset":296,"endOffset":304,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618463Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"746a533a2a13b3b67cd2e53ebbb60b8e","type":"CBI_author","value":"Heintz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Deviation:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":83.6568,"y":61.599976},"width":27.623085,"height":10.526819,"page":255}],"sectionNumber":2960,"textBefore":"study. 4 K ","textAfter":" (2014). Report","comments":null,"startOffset":215,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618463Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04f5f56955412d96e8145cdf47490cc5","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.4.2. In vivo studies in somatic cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.52444,"y":291.21002},"width":33.34012,"height":10.526819,"page":255}],"sectionNumber":2957,"textBefore":"Assay in Bone ","textAfter":" Cells of","comments":null,"startOffset":77,"endOffset":83,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618463Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"edcc8ad9ce660caef0978917be41aade","type":"CBI_author","value":"Roth M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.4.2. In vivo studies in somatic cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.25168,"y":291.21002},"width":34.28633,"height":10.526819,"page":255}],"sectionNumber":2957,"textBefore":"Report: K-CA 5.4.2/01 ","textAfter":" (2012). SYN545974","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618463Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"059ced0d658736327a7b5881997c5384","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.4.2. In vivo studies in somatic cells","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":214.83461,"y":256.76996},"width":38.051224,"height":10.526819,"page":255}],"sectionNumber":2957,"textBefore":"December, 2012, Unpublished. ","textAfter":" File No.","comments":null,"startOffset":281,"endOffset":289,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618464Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b7b29671ccea032d817147f4b062bcc8","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.4.2. In vivo studies in somatic cells","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":186.79727,"y":279.69},"width":325.6863,"height":10.526819,"page":255},{"topLeft":{"x":133.82,"y":268.28998},"width":125.460175,"height":10.526819,"page":255}],"sectionNumber":2957,"textBefore":"of the Mouse. ","textAfter":". Laboratory Report","comments":null,"startOffset":104,"endOffset":204,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618464Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2b123779a797450e60a8bc98a4c514b7","type":"CBI_author","value":"Wollny HE","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Experiment I and II","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.08945,"y":452.87},"width":51.40863,"height":11.017679,"page":255}],"sectionNumber":2956,"textBefore":"lymphoma assay. (","textAfter":", 2013) SYN545974","comments":null,"startOffset":744,"endOffset":753,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618464Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e223cb62bf3bdf74e4161d3867a3b6b","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Experiment I and II","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":594.0},"width":470.0,"height":159.0,"page":255}],"sectionNumber":2956,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618464Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"37981380ac77f49aaa4b45cfa4728ee3","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":658.1},"width":28.467995,"height":10.018499,"page":257}],"sectionNumber":2965,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618465Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"055976a690bc3ab0f25c510818a25dc8","type":"CBI_address","value":"Charles River Laboratories, Research Models and Services Germany GmbH; Sandhofer Weg 7, 97633 Sulzfeld, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":193.61,"y":470.03},"width":336.44788,"height":10.0905,"page":257},{"topLeft":{"x":193.61,"y":459.71},"width":102.709,"height":10.0905,"page":257}],"sectionNumber":2976,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618465Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fded465cb292701baf7431d71ae45e74","type":"CBI_author","value":"Whitney","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":287.45,"y":150.18},"width":39.01068,"height":11.017679,"page":259}],"sectionNumber":3022,"textBefore":"the non-paratric Mann-","textAfter":" test (Table","comments":null,"startOffset":4029,"endOffset":4036,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618465Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"565e11d1634422118985c6e16b486dfd","type":"CBI_author","value":"Mann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":258.1441,"y":150.18},"width":26.789429,"height":11.017679,"page":259}],"sectionNumber":3022,"textBefore":"of the non-paratric ","textAfter":"-Whitney test (Table","comments":null,"startOffset":4024,"endOffset":4028,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618465Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b10b2ad41cdefead87c7c7459568dbaa","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":214.83461,"y":203.82},"width":38.051224,"height":10.526819,"page":260}],"sectionNumber":3020,"textBefore":"December 2014, Unpublished. ","textAfter":" File No.","comments":null,"startOffset":280,"endOffset":288,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618465Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3bd1848e9d933690b304e437d1d209da","type":"CBI_author","value":"Roth M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":466.52945,"y":278.13},"width":34.925934,"height":11.017679,"page":260}],"sectionNumber":3022,"textBefore":"micronucleus assay. (","textAfter":", 2012) Guidelines:","comments":null,"startOffset":4604,"endOffset":4610,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618466Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0d019bc5a3cc691d6a3d58ad3ab93a01","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":137.94},"width":82.53038,"height":11.017679,"page":260}],"sectionNumber":3022,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4768,"endOffset":4785,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618466Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5864fc0760b457369d96604e2bd21015","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":186.79727,"y":226.85999},"width":325.6863,"height":10.526819,"page":260},{"topLeft":{"x":133.82,"y":215.34003},"width":127.25299,"height":10.526819,"page":260}],"sectionNumber":3020,"textBefore":"of the Mouse. ","textAfter":". Laboratory Report","comments":null,"startOffset":104,"endOffset":204,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618466Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b25e218650399f574a4e7cbf3fde02d1","type":"CBI_author","value":"Dony E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.49072,"y":238.26001},"width":34.296265,"height":10.526819,"page":260}],"sectionNumber":3020,"textBefore":"Report: K-CA 5.4.2/02 ","textAfter":" (2014). SYN545974","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618466Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7376d07b81586ffe42ed3e5bcd6648da","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.27213,"y":238.26001},"width":33.34012,"height":10.526819,"page":260}],"sectionNumber":3020,"textBefore":"Assay in Bone ","textAfter":" Cells of","comments":null,"startOffset":77,"endOffset":83,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618466Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a3b3ceaeae076a4f39319573c6849f0a","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":394.0},"width":315.0,"height":139.0,"page":260}],"sectionNumber":3022,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618467Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e67d699d76245bf45b5daee73ef615c1","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":67.0,"y":564.0},"width":332.0,"height":201.0,"page":260}],"sectionNumber":3022,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618467Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f36eab8e665b235f806ffb48a5a92510","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":281.49},"width":28.467995,"height":10.018499,"page":261}],"sectionNumber":3024,"textBefore":null,"textAfter":null,"comments":null,"startOffset":79,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618467Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"371a98568379ffd28b6b7aadd4af4acc","type":"PII","value":"50-60","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":315.359,"y":598.82},"width":22.244965,"height":10.0905,"page":262}],"sectionNumber":3033,"textBefore":"65% (Aim of ","textAfter":"%) Photoperiod: 12","comments":null,"startOffset":469,"endOffset":474,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618468Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787014Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b1c55372bf901e109dada06bc8f564b8","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":130.0},"width":269.0,"height":79.0,"page":263}],"sectionNumber":3049,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618468Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"25b3ca96aa1d2a7eee2db7a072af6293","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":511.0},"width":286.0,"height":135.0,"page":263}],"sectionNumber":3049,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618468Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7bc80eff93f17f773370e689002e84a8","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":263.0},"width":292.0,"height":123.0,"page":263}],"sectionNumber":3049,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618468Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"72f84e5148c433e98f0473a32a4ac88b","type":"CBI_author","value":"Whitney","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"1000 mg/kg bw SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.55,"y":302.01},"width":38.911316,"height":11.017679,"page":264}],"sectionNumber":3051,"textBefore":"the non-paratric Mann-","textAfter":" test (Table","comments":null,"startOffset":3061,"endOffset":3068,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618468Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8fc3a513d4dae93cfefd49c62063bdd5","type":"CBI_author","value":"Mann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"1000 mg/kg bw SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":367.24414,"y":302.01},"width":26.789429,"height":11.017679,"page":264}],"sectionNumber":3051,"textBefore":"of the non-paratric ","textAfter":"-Whitney test (Table","comments":null,"startOffset":3056,"endOffset":3060,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618469Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"84f7f63b68ff4b1690a80c5672fa7452","type":"CBI_author","value":"Dony, E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"1000 mg/kg bw SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":466.52945,"y":294.09003},"width":37.61969,"height":11.017679,"page":265}],"sectionNumber":3051,"textBefore":"micronucleus assay. (","textAfter":" 2014)","comments":null,"startOffset":3551,"endOffset":3558,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618469Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb537c4b95d4409e19a3f26f9cee8bcd","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"1000 mg/kg bw SYN545974","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":568.0},"width":324.0,"height":198.0,"page":265}],"sectionNumber":3051,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618469Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6ae97d4adc1e456addfb8d929aa704a4","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"1000 mg/kg bw SYN545974","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":414.0},"width":299.0,"height":123.0,"page":265}],"sectionNumber":3051,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618469Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3e4ca362743e4c0f4c513afee8bef460","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.5-1: SYN545974: Summary of long term toxicity and carcinogenicity studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":69.504,"y":463.91},"width":50.652992,"height":10.0905,"page":267}],"sectionNumber":3055,"textBefore":"Robertson B, 2015a ","textAfter":" Report No.","comments":null,"startOffset":55,"endOffset":68,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61847Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8300636211259c2c48c65fa041a5aca9","type":"CBI_author","value":"Robertson B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-1: SYN545974: Summary of long term toxicity and carcinogenicity studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":646.1},"width":46.32399,"height":10.0905,"page":267}],"sectionNumber":3054,"textBefore":"week toxicity study ","textAfter":", 2015 Charles","comments":null,"startOffset":74,"endOffset":85,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61847Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4d5f728a23bb8838d26ae320634e9637","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.5-1: SYN545974: Summary of long term toxicity and carcinogenicity studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":69.504,"y":633.62},"width":50.652992,"height":10.0905,"page":267}],"sectionNumber":3054,"textBefore":"Robertson B, 2015 ","textAfter":" Report No.","comments":null,"startOffset":92,"endOffset":105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61847Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4eed32d34796899eea7029a117b79487","type":"CBI_author","value":"Lowes D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: the liver tumours in the male mouse.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":413.61},"width":33.643005,"height":10.0905,"page":268}],"sectionNumber":3062,"textBefore":"human hepatocyte cultures ","textAfter":", 2015a CXR","comments":null,"startOffset":97,"endOffset":104,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61847Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ed07b65b94b132dc0ae04f68cd774db","type":"CBI_author","value":"Lowes D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: the liver tumours in the male mouse.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":484.19},"width":33.643005,"height":10.0905,"page":268}],"sectionNumber":3061,"textBefore":"CD-1 mouse hepatocytes ","textAfter":", 2015 CXR","comments":null,"startOffset":94,"endOffset":101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618471Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c41715a44f8f432097e4bda380be898e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: the liver tumours in the male mouse.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":69.504,"y":627.26},"width":34.471,"height":10.0905,"page":268}],"sectionNumber":3059,"textBefore":"Cowie C, 2015 ","textAfter":" Report No","comments":null,"startOffset":90,"endOffset":98,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618471Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6362532f418ed8f98f98b4b0a498cff2","type":"CBI_author","value":"Cowie C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: the liver tumours in the male mouse.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":639.74},"width":32.661995,"height":10.0905,"page":268}],"sectionNumber":3059,"textBefore":"in CD-1 mice ","textAfter":", 2015 Syngenta","comments":null,"startOffset":76,"endOffset":83,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618471Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9b08b6b52391b85223585ba3236b1366","type":"CBI_author","value":"Omiencinski C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: the liver tumours in the male mouse.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":353.25},"width":55.225,"height":10.0905,"page":268}],"sectionNumber":3063,"textBefore":"and human CAR ","textAfter":", 2014 PennState","comments":null,"startOffset":57,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618472Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c1cbe573bb5ffec351bb3071123bd36d","type":"CBI_author","value":"Robertson B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: the liver tumours in the male mouse.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":190.38246,"y":750.98},"width":53.718292,"height":10.526819,"page":269}],"sectionNumber":3066,"textBefore":"Report: K-CA 5.5/01 ","textAfter":" (2015). SYN545974:","comments":null,"startOffset":20,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618472Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f0c8d1fd7894f961c73cb7deec1f65d","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.2744,"y":471.59},"width":19.337433,"height":11.017679,"page":269}],"sectionNumber":3071,"textBefore":"and 52 female ","textAfter":" Wistar Crl:","comments":null,"startOffset":106,"endOffset":109,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618472Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3f8285fb4c97acd4e35c8cfcac870cc4","type":"CBI_address","value":"Charles River Laboratories Edinburgh Ltd., Tranent, Edinburgh, EH33 2NE, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: the liver tumours in the male mouse.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":310.61,"y":739.46},"width":211.10645,"height":10.526819,"page":269},{"topLeft":{"x":135.62,"y":727.94},"width":111.84842,"height":10.526819,"page":269}],"sectionNumber":3066,"textBefore":"Week Toxicity Study. ","textAfter":". Laboratory Report","comments":null,"startOffset":135,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618472Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"34bad7adf9d2a7405e2e62c1e1361470","type":"CBI_author","value":"Robertson B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: the liver tumours in the male mouse.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":202.50658,"y":685.34},"width":58.12062,"height":10.526819,"page":269}],"sectionNumber":3068,"textBefore":"Report: K-CA 5.5/02 ","textAfter":", 2016 SYN545974","comments":null,"startOffset":20,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618472Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e283647a90b0836dd1baf258efe0f5da","type":"CBI_address","value":"Crl:","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":514.0944,"y":471.59},"width":18.100952,"height":11.017679,"page":269}],"sectionNumber":3071,"textBefore":"female Han Wistar ","textAfter":" WI (Han)","comments":null,"startOffset":117,"endOffset":121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4581b9f14304347e27e80b8bfa615023","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":217.43855,"y":371.01},"width":23.024796,"height":11.017679,"page":269}],"sectionNumber":3071,"textBefore":"completion of treatment. ","textAfter":" to terminal","comments":null,"startOffset":744,"endOffset":749,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99e518f376342c3230781818d0c36ea9","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":86.879524,"y":458.99},"width":19.337433,"height":11.017679,"page":269}],"sectionNumber":3071,"textBefore":"Crl: WI (","textAfter":") rats were","comments":null,"startOffset":126,"endOffset":129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618473Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"781e3dc62e16a168aeabc6c38ba07938","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"the liver tumours in the male mouse.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":558.23},"width":82.53038,"height":11.017679,"page":269}],"sectionNumber":3070,"textBefore":null,"textAfter":null,"comments":null,"startOffset":447,"endOffset":464,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"14de713e7a36fa5071a1ecfd5a989017","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: the liver tumours in the male mouse.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":439.06,"y":673.82},"width":38.05127,"height":10.526819,"page":269}],"sectionNumber":3068,"textBefore":"Bracknell, United Kingdom, ","textAfter":" File No.","comments":null,"startOffset":149,"endOffset":157,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cac3ac96b2ab3f71d4aa9333cba8182b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: the liver tumours in the male mouse.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":252.5902,"y":716.42},"width":38.160843,"height":10.526819,"page":269}],"sectionNumber":3066,"textBefore":"March 2016. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":302,"endOffset":310,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618474Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"869c95fb18e202f019766323a7b2bc14","type":"CBI_address","value":"Syngenta - Jealott’s Hill, Bracknell, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: the liver tumours in the male mouse.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":219.17,"y":673.82},"width":215.50786,"height":10.526819,"page":269}],"sectionNumber":3068,"textBefore":"Data for SYN545974_10245, ","textAfter":", Syngenta File","comments":null,"startOffset":95,"endOffset":147,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618474Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3e724b2e61c392612253c30d6d0d83e","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":228.18},"width":28.467995,"height":10.018499,"page":270}],"sectionNumber":3072,"textBefore":null,"textAfter":null,"comments":null,"startOffset":96,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618474Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"36395461d646db18caa53b37972e0d0d","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.2744,"y":487.07},"width":19.337433,"height":11.017679,"page":271}],"sectionNumber":3075,"textBefore":"and 52 female ","textAfter":" Wistar Crl:","comments":null,"startOffset":172,"endOffset":175,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618474Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d17e33d386414862f6d6184d6e2563e7","type":"PII","value":"10-300","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.96024,"y":323.25},"width":32.460144,"height":11.017679,"page":271}],"sectionNumber":3075,"textBefore":"the males (approximately ","textAfter":" mg/kg bw/day)","comments":null,"startOffset":1329,"endOffset":1335,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618475Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787018Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fc87027d0053f90df0b1fb71cae6f8d8","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":286.47205,"y":728.18},"width":15.948975,"height":10.0905,"page":271}],"sectionNumber":3073,"textBefore":"Han Wistar (Crl:WI(","textAfter":"))","comments":null,"startOffset":52,"endOffset":55,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618475Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c94ac3b6977a10de199cad6fc221d66","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.05,"y":728.18},"width":12.502014,"height":10.0905,"page":271}],"sectionNumber":3073,"textBefore":"Han Wistar (","textAfter":":WI(Han))","comments":null,"startOffset":45,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618475Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a33c2c8cc3e2ac08f8acb7155ada4c42","type":"PII","value":"116-183","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":312.008,"y":715.34},"width":31.113007,"height":10.0905,"page":271}],"sectionNumber":3073,"textBefore":"6-8 weeks / ","textAfter":" g (males),","comments":null,"startOffset":105,"endOffset":112,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618475Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787018Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"76c3d40695f7aeed758b2a7d130e441c","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.61,"y":728.18},"width":15.940002,"height":10.0905,"page":271}],"sectionNumber":3073,"textBefore":null,"textAfter":" Wistar (Crl:WI(Han))","comments":null,"startOffset":33,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618475Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c71137d2b8ba0f8d05e62db91213a1b","type":"CBI_address","value":"Crl:","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":514.0944,"y":487.07},"width":18.100952,"height":11.017679,"page":271}],"sectionNumber":3075,"textBefore":"female Han Wistar ","textAfter":" WI (Han)","comments":null,"startOffset":183,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618476Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3250cbc112a177bb36c82165ccaf7196","type":"PII","value":"150-1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":310.64996},"width":43.119987,"height":11.017679,"page":271}],"sectionNumber":3075,"textBefore":"mg/kg bw/day) and ","textAfter":" ppm for","comments":null,"startOffset":1354,"endOffset":1362,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618476Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787018Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"411fb6b57cff7509e72a18fb8922a464","type":"PII","value":"10-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":272.02277,"y":310.64996},"width":32.267212,"height":11.017679,"page":271}],"sectionNumber":3075,"textBefore":"the females (approximately ","textAfter":" mg/kg bw/day).","comments":null,"startOffset":1398,"endOffset":1404,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618476Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787019Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7907f39865a7089e1c5c7db448a0372b","type":"PII","value":"200-6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":134.16704,"y":323.25},"width":43.012985,"height":11.017679,"page":271}],"sectionNumber":3075,"textBefore":"Consequently, doses between ","textAfter":" ppm were","comments":null,"startOffset":1273,"endOffset":1281,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618476Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787019Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f927703e6f313147ed17a08a435911d9","type":"PII","value":"106-160","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":382.45007,"y":715.34},"width":31.110931,"height":10.0905,"page":271}],"sectionNumber":3073,"textBefore":"116-183 g (males), ","textAfter":" g (females)","comments":null,"startOffset":124,"endOffset":131,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618476Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787019Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"97f84e13241d099c031206073cf8afbd","type":"CBI_address","value":"Charles River UK Limited, Margate, Kent, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":702.5},"width":170.68608,"height":10.0905,"page":271}],"sectionNumber":3073,"textBefore":null,"textAfter":null,"comments":null,"startOffset":151,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b0fd61ab95681bffa8602692e260c8a3","type":"PII","value":"12-77","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.814,"y":585.35},"width":22.093018,"height":10.0905,"page":271}],"sectionNumber":3073,"textBefore":"Temperature: 19-22°C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":754,"endOffset":759,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618477Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787019Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"113c348720ec56d1b1c253508cf835c5","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":86.879524,"y":474.47},"width":19.337433,"height":11.017679,"page":271}],"sectionNumber":3075,"textBefore":"Crl: WI (","textAfter":") rats were","comments":null,"startOffset":192,"endOffset":195,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618477Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25500d9c4fa9447b6dee28a1c3c29dd5","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":272.13742,"y":386.49},"width":62.227844,"height":11.017679,"page":271}],"sectionNumber":3075,"textBefore":"test substance (","textAfter":" Study Nos.","comments":null,"startOffset":802,"endOffset":815,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"939eb7a2bda1097d863979216f55b79a","type":"PII","value":"1000 52 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.37,"y":646.34},"width":19.044998,"height":10.0905,"page":272},{"topLeft":{"x":271.37,"y":646.34},"width":10.059998,"height":10.0905,"page":272},{"topLeft":{"x":412.63,"y":646.34},"width":10.059998,"height":10.0905,"page":272}],"sectionNumber":3082,"textBefore":null,"textAfter":null,"comments":null,"startOffset":20,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618477Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78702Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"50a605de7029c3973370618f9b9fb11d","type":"PII","value":"200 52 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.53,"y":675.98},"width":14.619995,"height":10.0905,"page":272},{"topLeft":{"x":271.37,"y":675.98},"width":10.059998,"height":10.0905,"page":272},{"topLeft":{"x":412.63,"y":675.98},"width":10.059998,"height":10.0905,"page":272}],"sectionNumber":3080,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618478Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78702Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dc2186266cb2e38611a3cfb335964fd0","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study design","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":265.72754,"y":446.75},"width":61.64276,"height":11.017679,"page":272}],"sectionNumber":3087,"textBefore":"conditions established during ","textAfter":" Study No.","comments":null,"startOffset":1085,"endOffset":1098,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618478Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30142fbebf9a18dd6bbb7e019be9dce4","type":"PII","value":"6000 52 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.37,"y":616.58},"width":19.044998,"height":10.0905,"page":272},{"topLeft":{"x":271.37,"y":616.58},"width":10.059998,"height":10.0905,"page":272},{"topLeft":{"x":412.63,"y":616.58},"width":10.059998,"height":10.0905,"page":272}],"sectionNumber":3084,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618478Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78702Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6fd9ffd05dd76756e6ad660556a2df6f","type":"PII","value":"1500 52 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.37,"y":601.7},"width":19.044998,"height":10.0905,"page":272},{"topLeft":{"x":342.07,"y":601.7},"width":10.059998,"height":10.0905,"page":272},{"topLeft":{"x":480.58,"y":601.7},"width":10.059998,"height":10.0905,"page":272}],"sectionNumber":3085,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618478Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787021Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d3b89cde96acb4d5d47dba8979b89b43","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study design","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":214.09344,"y":384.09},"width":61.984985,"height":11.017679,"page":272}],"sectionNumber":3087,"textBefore":"performed previously in ","textAfter":" Study No.","comments":null,"startOffset":1454,"endOffset":1467,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618479Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c1698cc20eaa607bc83c99ecb8d20c47","type":"PII","value":"450 52 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.53,"y":631.46},"width":14.619995,"height":10.0905,"page":272},{"topLeft":{"x":342.07,"y":631.46},"width":10.059998,"height":10.0905,"page":272},{"topLeft":{"x":480.58,"y":631.46},"width":10.059998,"height":10.0905,"page":272}],"sectionNumber":3083,"textBefore":null,"textAfter":null,"comments":null,"startOffset":20,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618479Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787021Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"913bd6e9ed4c8f82da5e771e3f7d8720","type":"PII","value":"150 52 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.53,"y":661.1},"width":14.619995,"height":10.0905,"page":272},{"topLeft":{"x":342.07,"y":661.1},"width":10.059998,"height":10.0905,"page":272},{"topLeft":{"x":480.58,"y":661.1},"width":10.059998,"height":10.0905,"page":272}],"sectionNumber":3081,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618479Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787021Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ab22348d7c5fa73be482f389b32ad496","type":"CBI_author","value":"Nevis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Other physical/functional abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":95.03808,"y":577.07},"width":26.64592,"height":11.017679,"page":277}],"sectionNumber":3097,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6226,"endOffset":6231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618479Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"79042fafae58d054ca58611e54a3390b","type":"PII","value":"79-92","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Other physical/functional abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.73775,"y":399.93},"width":26.512268,"height":11.017679,"page":277}],"sectionNumber":3097,"textBefore":"and 53-78 weeks, ","textAfter":" weeks and","comments":null,"startOffset":7700,"endOffset":7705,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61848Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787021Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a843040af21cb89b18365736fe38e968","type":"PII","value":"53-78","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Other physical/functional abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":114.2256,"y":399.93},"width":26.594406,"height":11.017679,"page":277}],"sectionNumber":3097,"textBefore":"1-52 weeks and ","textAfter":" weeks, 79-92","comments":null,"startOffset":7687,"endOffset":7692,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61848Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787022Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bb4544373719734e1cecd721701e1077","type":"CBI_author","value":"Kaplan","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Other physical/functional abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":306.85162,"y":715.58},"width":32.7731,"height":11.017679,"page":277}],"sectionNumber":3097,"textBefore":"was statistically significant. ","textAfter":"-Meier survival estimates","comments":null,"startOffset":5343,"endOffset":5349,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61848Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ffd29d5bb84d851e4d724f46b6410c7d","type":"CBI_author","value":"Meier","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Other physical/functional abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.43,"y":715.58},"width":27.440826,"height":11.017679,"page":277}],"sectionNumber":3097,"textBefore":"statistically significant. Kaplan-","textAfter":" survival estimates","comments":null,"startOffset":5350,"endOffset":5355,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f62fae34d05e19ce9d1334c99d2febed","type":"hint_only","value":"pathologist","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Other physical/functional abnormalities","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":211.0736,"y":551.75},"width":49.8741,"height":11.017679,"page":277}],"sectionNumber":3097,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6458,"endOffset":6469,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"44e8298858ed0bfa1312a8d0a1d20a3d","type":"PII","value":"150 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-3: Overall % survival in carcinogenicity study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":177.827,"y":684.98},"width":14.509003,"height":10.018499,"page":278},{"topLeft":{"x":159.62,"y":670.7},"width":19.044998,"height":10.018499,"page":278}],"sectionNumber":3099,"textBefore":"0 200/","textAfter":"/450 6000/1500","comments":null,"startOffset":14,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618482Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787023Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3d314a0f717157bff52383cf783c348c","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":327.34497,"y":181.85999},"width":29.997986,"height":10.0905,"page":278}],"sectionNumber":3130,"textBefore":"group mean, p<0.01(","textAfter":") Food consumption,","comments":null,"startOffset":2183,"endOffset":2190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618482Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8b5bb77f54d5e9ebc3b06fa6fe72807b","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":325.45093,"y":194.10004},"width":29.871979,"height":10.0905,"page":278}],"sectionNumber":3130,"textBefore":"mean, p<0.05 (","textAfter":") ** Statistically","comments":null,"startOffset":2102,"endOffset":2109,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618482Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a1ca1cca0d0ab6a00a4c3ff15d0572a4","type":"PII","value":"1500 38","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-3: Overall % survival in carcinogenicity study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":177.842,"y":656.3},"width":19.044998,"height":10.018499,"page":278},{"topLeft":{"x":246.41,"y":699.62},"width":10.053986,"height":10.0905,"page":278}],"sectionNumber":3099,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618482Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787023Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"98ed312b6a54d795968efaac61d9e610","type":"PII","value":"450 6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-3: Overall % survival in carcinogenicity study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":180.122,"y":670.7},"width":14.490997,"height":10.018499,"page":278},{"topLeft":{"x":157.34,"y":656.3},"width":19.044998,"height":10.018499,"page":278}],"sectionNumber":3099,"textBefore":"0 200/150 1000/","textAfter":"/1500","comments":null,"startOffset":23,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618482Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787023Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d981d622cf63d879566b862679afc3cf","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-4: Intergroup comparison of body weights (g) and body weight gains (g) (carcinogenicity and\ntoxicity combined) - selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":393.91,"y":368.37},"width":14.619995,"height":10.018499,"page":278},{"topLeft":{"x":448.42,"y":368.37},"width":14.619995,"height":10.018499,"page":278},{"topLeft":{"x":497.98,"y":368.37},"width":19.045013,"height":10.018499,"page":278}],"sectionNumber":3102,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618483Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787024Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e4ae6b1c636174066755814007f029b6","type":"PII","value":"200 1000 6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-4: Intergroup comparison of body weights (g) and body weight gains (g) (carcinogenicity and\ntoxicity combined) - selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.94,"y":368.37},"width":14.619995,"height":10.018499,"page":278},{"topLeft":{"x":228.29,"y":368.37},"width":19.044998,"height":10.018499,"page":278},{"topLeft":{"x":282.77,"y":368.37},"width":19.044983,"height":10.018499,"page":278}],"sectionNumber":3102,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618486Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787024Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"da483f1f36e785e1ae45f81fa457e6a8","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-6: Intergroup comparison of food utilisation (g body weight gain/100g food consumed)\n(carcinogenicity and toxicity combined) - selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":393.91,"y":255.33002},"width":14.619995,"height":10.018499,"page":279},{"topLeft":{"x":448.42,"y":255.33002},"width":14.619995,"height":10.018499,"page":279},{"topLeft":{"x":497.98,"y":255.33002},"width":19.045013,"height":10.018499,"page":279}],"sectionNumber":3112,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618486Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787024Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9fb068156cceedd35e584f4065666e28","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-5: Intergroup comparison of food consumption (g/animal/day) (carcinogenicity and toxicity\ncombined) - selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":393.91,"y":599.9},"width":14.619995,"height":10.018499,"page":279},{"topLeft":{"x":448.42,"y":599.9},"width":14.619995,"height":10.018499,"page":279},{"topLeft":{"x":497.98,"y":599.9},"width":19.045013,"height":10.018499,"page":279}],"sectionNumber":3108,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618487Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787024Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f74be5712ee56513f60b216361a0bb60","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":325.1849,"y":455.39},"width":29.871979,"height":10.0905,"page":279}],"sectionNumber":3130,"textBefore":"mean, p<0.05 (","textAfter":") ** Statistically","comments":null,"startOffset":3737,"endOffset":3744,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618487Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2e387588949e9591aa808cf549d5030e","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":327.34497,"y":443.15},"width":29.997986,"height":10.0905,"page":279}],"sectionNumber":3130,"textBefore":"group mean, p<0.01(","textAfter":") Males that","comments":null,"startOffset":3818,"endOffset":3825,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618487Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43f6b7e684c846812572d2d9bc38e5f7","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":327.34497,"y":184.62},"width":29.997986,"height":10.0905,"page":279}],"sectionNumber":3130,"textBefore":"group mean, p<0.01(","textAfter":") Estimated achieved","comments":null,"startOffset":4795,"endOffset":4802,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618487Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99e8c09ad79293cace5ac1dbb89d4c74","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":325.38794,"y":196.85999},"width":29.871979,"height":10.0905,"page":279}],"sectionNumber":3130,"textBefore":"mean, p<0.05 (","textAfter":") ** Statistically","comments":null,"startOffset":4714,"endOffset":4721,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618493Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf20f0cd3ade4c9fa35fff84edb01969","type":"PII","value":"200 1000 6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-5: Intergroup comparison of food consumption (g/animal/day) (carcinogenicity and toxicity\ncombined) - selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.94,"y":599.9},"width":14.619995,"height":10.018499,"page":279},{"topLeft":{"x":228.29,"y":599.9},"width":19.044998,"height":10.018499,"page":279},{"topLeft":{"x":282.77,"y":599.9},"width":19.044983,"height":10.018499,"page":279}],"sectionNumber":3108,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618493Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787025Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"28b7e1aa994f35dfbd593c5bf0d04ec0","type":"PII","value":"200 1000 6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-6: Intergroup comparison of food utilisation (g body weight gain/100g food consumed)\n(carcinogenicity and toxicity combined) - selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.94,"y":255.33002},"width":14.619995,"height":10.018499,"page":279},{"topLeft":{"x":228.29,"y":255.33002},"width":19.044998,"height":10.018499,"page":279},{"topLeft":{"x":282.77,"y":255.33002},"width":19.044983,"height":10.018499,"page":279}],"sectionNumber":3112,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618493Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787025Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"19d6f76aeeb354122af66314ee46ac9c","type":"PII","value":"450 6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-7: Mean Dose Received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":360.05197,"y":733.7},"width":14.490997,"height":10.018499,"page":280},{"topLeft":{"x":454.78,"y":733.7},"width":19.044983,"height":10.018499,"page":280}],"sectionNumber":3115,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618494Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787025Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"94a5fee2073aaeaea1ae8ed6ca848fa2","type":"PII","value":"150 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-7: Mean Dose Received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":240.257,"y":733.7},"width":14.509003,"height":10.018499,"page":280},{"topLeft":{"x":339.55,"y":733.7},"width":19.044983,"height":10.018499,"page":280}],"sectionNumber":3115,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618494Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787026Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d62e4e4ddfc3a705a46bf2b27010b3f2","type":"PII","value":"09 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-8: Intergroup comparison of selected blood clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":514.282,"y":621.38},"width":9.937012,"height":10.0905,"page":281},{"topLeft":{"x":505.18,"y":596.66},"width":10.054016,"height":10.0905,"page":281}],"sectionNumber":3122,"textBefore":"2.","textAfter":".14 4","comments":null,"startOffset":160,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618494Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787026Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f16899a63a133b37a225a945f5fb5579","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-9: Intergroup comparison of selected macroscopic findings – toxicity study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":427.87,"y":147.89996},"width":14.619995,"height":10.018499,"page":281},{"topLeft":{"x":468.7,"y":147.89996},"width":14.619995,"height":10.018499,"page":281},{"topLeft":{"x":507.46,"y":147.89996},"width":19.045013,"height":10.018499,"page":281}],"sectionNumber":3132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618495Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787026Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0877657703c86facb5e848cd56468b51","type":"PII","value":"200 1000 6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-9: Intergroup comparison of selected macroscopic findings – toxicity study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":264.41,"y":147.89996},"width":14.619995,"height":10.018499,"page":281},{"topLeft":{"x":303.05,"y":147.89996},"width":19.044983,"height":10.018499,"page":281},{"topLeft":{"x":343.87,"y":147.89996},"width":19.044983,"height":10.018499,"page":281}],"sectionNumber":3132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618495Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787026Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c010f09e5588f4efcc74b33d24f9a84e","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-8: Intergroup comparison of selected blood clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.47,"y":704.66},"width":14.619995,"height":10.018499,"page":281},{"topLeft":{"x":471.82,"y":704.66},"width":14.619995,"height":10.018499,"page":281},{"topLeft":{"x":506.14,"y":704.66},"width":19.044983,"height":10.018499,"page":281}],"sectionNumber":3120,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618495Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787027Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f74bb20042447e732456cb285747b7a9","type":"PII","value":"200 1000 6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-8: Intergroup comparison of selected blood clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":255.41,"y":704.66},"width":14.619995,"height":10.018499,"page":281},{"topLeft":{"x":297.17,"y":704.66},"width":19.044983,"height":10.018499,"page":281},{"topLeft":{"x":341.23,"y":704.66},"width":19.044983,"height":10.018499,"page":281}],"sectionNumber":3120,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618495Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787027Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de03dd6837de424a91e66590ab271a85","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-10: Intergroup comparison of selected macroscopic findings – carcinogenicity study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.11,"y":490.43},"width":14.619995,"height":10.018499,"page":282},{"topLeft":{"x":468.94,"y":490.43},"width":14.619995,"height":10.018499,"page":282},{"topLeft":{"x":504.82,"y":490.43},"width":19.045044,"height":10.018499,"page":282}],"sectionNumber":3137,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618496Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787027Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9a140ea1c52c289f2fbbc5e28c2b2451","type":"PII","value":"200 1000 6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-10: Intergroup comparison of selected macroscopic findings – carcinogenicity study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":264.89,"y":490.43},"width":14.619995,"height":10.018499,"page":282},{"topLeft":{"x":303.41,"y":490.43},"width":19.044983,"height":10.018499,"page":282},{"topLeft":{"x":344.23,"y":490.43},"width":19.044983,"height":10.018499,"page":282}],"sectionNumber":3137,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618496Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787027Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"06edbfdc51eeb4e58be4861e58ce71b1","type":"PII","value":"200 1000 6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5- 11: Intergroup comparison of organ weights (toxicity study)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.65,"y":703.58},"width":14.619995,"height":10.018499,"page":283},{"topLeft":{"x":287.93,"y":703.58},"width":19.044983,"height":10.018499,"page":283},{"topLeft":{"x":331.51,"y":703.58},"width":19.044983,"height":10.018499,"page":283}],"sectionNumber":3143,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618496Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787028Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6ed69c02208764631b366b11cc10c7ca","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5- 11: Intergroup comparison of organ weights (toxicity study)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":421.03,"y":703.58},"width":14.619995,"height":10.018499,"page":283},{"topLeft":{"x":462.46,"y":703.58},"width":14.619995,"height":10.018499,"page":283},{"topLeft":{"x":501.1,"y":703.58},"width":19.045013,"height":10.018499,"page":283}],"sectionNumber":3143,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618496Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787028Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de9175190fccc9ec2d94e730ad283fec","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-12: Intergroup comparison of organ weights (carcinogenicity study)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":421.27,"y":366.33},"width":14.619995,"height":10.018499,"page":283},{"topLeft":{"x":464.86,"y":366.33},"width":14.619995,"height":10.018499,"page":283},{"topLeft":{"x":506.02,"y":366.33},"width":19.045013,"height":10.018499,"page":283}],"sectionNumber":3148,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618496Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787028Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b1bcdf1ceef9b4bfb79a0f2ed41d1894","type":"PII","value":"200 1000 6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-12: Intergroup comparison of organ weights (carcinogenicity study)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.01,"y":366.33},"width":14.62001,"height":10.018499,"page":283},{"topLeft":{"x":288.29,"y":366.33},"width":19.044983,"height":10.018499,"page":283},{"topLeft":{"x":331.87,"y":366.33},"width":19.044983,"height":10.018499,"page":283}],"sectionNumber":3148,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618497Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787028Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"563a894ed3d5e9eba2d6c69ebe48115a","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-13: Intergroup comparison of selected microscopic findings (toxicity study)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":436.63,"y":565.67},"width":14.619995,"height":10.018499,"page":284},{"topLeft":{"x":474.1,"y":565.67},"width":14.619995,"height":10.018499,"page":284},{"topLeft":{"x":506.62,"y":565.67},"width":19.044983,"height":10.018499,"page":284}],"sectionNumber":3154,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618497Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787028Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e96339004fb40806db15f00a09748707","type":"PII","value":"200 1000 6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-13: Intergroup comparison of selected microscopic findings (toxicity study)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":287.09,"y":565.67},"width":14.619995,"height":10.018499,"page":284},{"topLeft":{"x":322.39,"y":565.67},"width":19.044983,"height":10.018499,"page":284},{"topLeft":{"x":359.71,"y":565.67},"width":19.044983,"height":10.018499,"page":284}],"sectionNumber":3154,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618497Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787029Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"49c99bb60acb5b798288a12adac7bad9","type":"PII","value":"200 1000 6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: (carcinogenicity study)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":287.09,"y":690.86},"width":14.619995,"height":10.018499,"page":285},{"topLeft":{"x":322.39,"y":690.86},"width":19.044983,"height":10.018499,"page":285},{"topLeft":{"x":359.71,"y":690.86},"width":19.044983,"height":10.018499,"page":285}],"sectionNumber":3162,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618497Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787029Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e7b88591a70b15d690ea760d59076347","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: (carcinogenicity study)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":436.63,"y":690.86},"width":14.619995,"height":10.018499,"page":285},{"topLeft":{"x":474.1,"y":690.86},"width":14.619995,"height":10.018499,"page":285},{"topLeft":{"x":506.62,"y":690.86},"width":19.044983,"height":10.018499,"page":285}],"sectionNumber":3162,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618498Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787029Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f2a259df505294daefe3d000767ede7a","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-15: Intergroup comparison of selected neoplastic microscopic findings in the thyroid\n(carcinogenicity study)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.7,"y":328.77},"width":14.619995,"height":10.018499,"page":285},{"topLeft":{"x":477.22,"y":328.77},"width":14.619995,"height":10.018499,"page":285},{"topLeft":{"x":510.22,"y":328.77},"width":19.045013,"height":10.018499,"page":285}],"sectionNumber":3167,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618498Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787029Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bd010ee9eccf7fbfcba990ef42b0d3d4","type":"PII","value":"200 1000 6000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-15: Intergroup comparison of selected neoplastic microscopic findings in the thyroid\n(carcinogenicity study)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":300.53,"y":328.77},"width":14.619995,"height":10.018499,"page":285},{"topLeft":{"x":333.55,"y":328.77},"width":54.32498,"height":10.018499,"page":285}],"sectionNumber":3167,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618498Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78703Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4297a9116a6d3439fe3d50a23861fb83","type":"PII","value":"2009 119","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.75,"y":619.22},"width":19.044983,"height":10.0905,"page":286},{"topLeft":{"x":408.91,"y":619.22},"width":14.619995,"height":10.0905,"page":286}],"sectionNumber":3177,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618498Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78703Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7cda56edcbd1812c3c384aa42abe275c","type":"PII","value":"2010 65","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.75,"y":604.1},"width":19.044983,"height":10.0905,"page":286},{"topLeft":{"x":411.19,"y":604.1},"width":10.059998,"height":10.0905,"page":286}],"sectionNumber":3178,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618499Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78703Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c94f2622c0ce762389e39aaa847d1c5b","type":"PII","value":"2009 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.75,"y":634.34},"width":19.044983,"height":10.0905,"page":286},{"topLeft":{"x":411.19,"y":634.34},"width":10.059998,"height":10.0905,"page":286}],"sectionNumber":3176,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618499Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78703Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e6ef3b32b6f23a23e2b3e57ac9de7501","type":"PII","value":"325 2007 52","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":664.58},"width":14.619995,"height":10.0905,"page":286},{"topLeft":{"x":141.62,"y":664.58},"width":19.044998,"height":10.0905,"page":286},{"topLeft":{"x":197.21,"y":664.58},"width":10.059998,"height":10.0905,"page":286}],"sectionNumber":3174,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618499Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78703Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"44121c277373c718de2202e3cb9634ea","type":"CBI_address","value":"Charles River Laboratories Edinburgh Ltd., Tranent, Edinburgh, EH33 2NE, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: CONCLUSION:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":275.33,"y":164.70001},"width":237.24155,"height":10.526819,"page":286},{"topLeft":{"x":133.82,"y":153.18},"width":112.412506,"height":10.526819,"page":286}],"sectionNumber":3187,"textBefore":"Report Amendment 1. ","textAfter":". Laboratory Report","comments":null,"startOffset":118,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618499Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f2a9e6dfdd2d4358bcb783c8b0d52c2","type":"PII","value":"304 2007 52","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":679.7},"width":14.619995,"height":10.0905,"page":286},{"topLeft":{"x":141.62,"y":679.7},"width":19.044998,"height":10.0905,"page":286},{"topLeft":{"x":197.21,"y":679.7},"width":10.059998,"height":10.0905,"page":286}],"sectionNumber":3173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618499Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787031Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eba8a09e15d3b168f4c9eb562be29e5c","type":"PII","value":"2007 52","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.75,"y":664.58},"width":19.044983,"height":10.0905,"page":286},{"topLeft":{"x":411.19,"y":664.58},"width":10.059998,"height":10.0905,"page":286}],"sectionNumber":3174,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6185Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787031Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f576569434a516a160fff30bb3ba7d75","type":"PII","value":"2007 52","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.75,"y":679.7},"width":19.044983,"height":10.0905,"page":286},{"topLeft":{"x":411.19,"y":679.7},"width":10.059998,"height":10.0905,"page":286}],"sectionNumber":3173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6185Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787031Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6ef75b1c9fe26ecacb2779200ce74a23","type":"PII","value":"2007 110","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.75,"y":649.46},"width":19.044983,"height":10.0905,"page":286},{"topLeft":{"x":408.91,"y":649.46},"width":14.619995,"height":10.0905,"page":286}],"sectionNumber":3175,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6185Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787031Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"246f127fad17402382bae3371970cf87","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: CONCLUSION:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":455.78732,"y":141.77997},"width":38.62381,"height":10.526819,"page":286}],"sectionNumber":3187,"textBefore":"February 2016. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":328,"endOffset":336,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6185Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a04a283582fe49656ddf77c8695c637","type":"PII","value":"072 2009 119","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":619.22},"width":14.619995,"height":10.0905,"page":286},{"topLeft":{"x":141.62,"y":619.22},"width":19.044998,"height":10.0905,"page":286},{"topLeft":{"x":194.93,"y":619.22},"width":14.619995,"height":10.0905,"page":286}],"sectionNumber":3177,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6185Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787032Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8a89f27e65df48a2ed71f910ef645617","type":"PII","value":"2013 52","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.75,"y":573.95},"width":19.044983,"height":10.0905,"page":286},{"topLeft":{"x":411.19,"y":573.95},"width":10.059998,"height":10.0905,"page":286}],"sectionNumber":3180,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618501Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787032Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5d457b6121a9c1fa44d6622138e6d59a","type":"CBI_author","value":"Charles","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"(carcinogenicity study)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":494.7549,"y":741.74},"width":37.674835,"height":10.929359,"page":286}],"sectionNumber":3170,"textBefore":"Wistar Rats at ","textAfter":null,"comments":null,"startOffset":804,"endOffset":811,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618501Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db4d94a570f7e043affacde6dec82bea","type":"PII","value":"580 2009 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":634.34},"width":14.619995,"height":10.0905,"page":286},{"topLeft":{"x":141.62,"y":634.34},"width":19.044998,"height":10.0905,"page":286},{"topLeft":{"x":197.21,"y":634.34},"width":10.059998,"height":10.0905,"page":286}],"sectionNumber":3176,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618501Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787032Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"213804b2a09fd0a88b8a3a88ec2904d6","type":"CBI_author","value":"Robertson B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.16943,"y":229.26001},"width":56.354523,"height":11.017679,"page":286}],"sectionNumber":3189,"textBefore":"mg SYN545974/kg/day. (","textAfter":", 2015) Guidelines:","comments":null,"startOffset":1340,"endOffset":1351,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618501Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ff817b1ca6d01e2efb0c0e213ca1b6c3","type":"PII","value":"2012 51","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.75,"y":589.1},"width":19.044983,"height":10.0905,"page":286},{"topLeft":{"x":411.19,"y":589.1},"width":10.059998,"height":10.0905,"page":286}],"sectionNumber":3179,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618501Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787032Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fd99341759646afcb3a2083f94dd3635","type":"PII","value":"930 2007 110","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":649.46},"width":14.619995,"height":10.0905,"page":286},{"topLeft":{"x":141.62,"y":649.46},"width":19.044998,"height":10.0905,"page":286},{"topLeft":{"x":194.93,"y":649.46},"width":14.619995,"height":10.0905,"page":286}],"sectionNumber":3175,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618502Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787032Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"be6f26c136e0696ae0f7419feb6c6e04","type":"CBI_author","value":"Robertson B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":191.02364,"y":176.22003},"width":55.02942,"height":10.526819,"page":286}],"sectionNumber":3187,"textBefore":"Report: K-CA 5.5/03 ","textAfter":" (2015a). SYN545974:","comments":null,"startOffset":20,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618502Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"98ecb2c885e5623be35b3a0290d3502f","type":"PII","value":"261 2013 52","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":573.95},"width":14.619995,"height":10.0905,"page":286},{"topLeft":{"x":141.62,"y":573.95},"width":19.044998,"height":10.0905,"page":286},{"topLeft":{"x":197.21,"y":573.95},"width":10.059998,"height":10.0905,"page":286}],"sectionNumber":3180,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618502Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787033Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"da101709913a1f7ee48f2f77a1a38bee","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"(carcinogenicity study)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":393.69473,"y":741.74},"width":21.291504,"height":10.929359,"page":286}],"sectionNumber":3170,"textBefore":"Studies in Female ","textAfter":" Wistar Rats","comments":null,"startOffset":785,"endOffset":788,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618502Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a4db1ba2af5c4ff622f58137d0cadf85","type":"PII","value":"612 2012 51","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":589.1},"width":14.619995,"height":10.0905,"page":286},{"topLeft":{"x":141.62,"y":589.1},"width":19.044998,"height":10.0905,"page":286},{"topLeft":{"x":197.21,"y":589.1},"width":10.059998,"height":10.0905,"page":286}],"sectionNumber":3179,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618502Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787033Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0ac8faec539e9f85ad30b2968f0e469f","type":"PII","value":"911 2010 65","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: River Laboratories (April 2007 – March 2013)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":604.1},"width":14.619995,"height":10.0905,"page":286},{"topLeft":{"x":141.62,"y":604.1},"width":19.044998,"height":10.0905,"page":286},{"topLeft":{"x":197.21,"y":604.1},"width":10.059998,"height":10.0905,"page":286}],"sectionNumber":3178,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618503Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787033Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9cd1147994f2cbd1e578873d62dcc7a9","type":"PII","value":"32-36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CONCLUSION:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":164.11533,"y":753.5},"width":26.62468,"height":11.017679,"page":287}],"sectionNumber":3189,"textBefore":"(1987) OJEC, L133, ","textAfter":", 1988: Appendix","comments":null,"startOffset":1658,"endOffset":1663,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618503Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787034Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e6bbee677517aab4157eb2fea36bc77d","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"CONCLUSION:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":716.18},"width":82.53038,"height":11.017679,"page":287}],"sectionNumber":3189,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1778,"endOffset":1795,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618503Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5adf1f85618d766066dc142512963257","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.53,"y":537.35},"width":12.501999,"height":10.0905,"page":288}],"sectionNumber":3194,"textBefore":null,"textAfter":":CD-1(ICR","comments":null,"startOffset":7,"endOffset":10,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618503Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"191c8b5b16ee7e7509365d9c32eff171","type":"PII","value":"12-77","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":252.734,"y":425.63},"width":22.093033,"height":10.0905,"page":288}],"sectionNumber":3201,"textBefore":"Temperature: 19-22°C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":56,"endOffset":61,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618504Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787034Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b00fc59ce2f757f54ccf5c0a8d897feb","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.15,"y":68.08002},"width":10.059998,"height":10.0905,"page":288},{"topLeft":{"x":469.42,"y":68.08002},"width":10.059998,"height":10.0905,"page":288}],"sectionNumber":3207,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618504Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787034Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2b3fd13092f7b38a2edb7f0edf3d2c1c","type":"PII","value":"10-300","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.58405,"y":251.48999},"width":32.22592,"height":11.017679,"page":288}],"sectionNumber":3204,"textBefore":"to be approximately ","textAfter":" mg/kg bw/day).","comments":null,"startOffset":733,"endOffset":739,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618504Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787035Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"19132ecb24ea1c65052bfab7c4e70ada","type":"PII","value":"10-300","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":104.75328,"y":264.09003},"width":32.10672,"height":11.017679,"page":288}],"sectionNumber":3204,"textBefore":"(linear kinetics) between ","textAfter":" mg/kg bw/day","comments":null,"startOffset":601,"endOffset":607,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618504Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787035Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5e035d3570b0b6edd557e533ccd0c553","type":"CBI_address","value":"Special Diets Services, Stepfield, Witham, Essex, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":343.5374,"y":600.62},"width":188.55865,"height":11.017679,"page":288},{"topLeft":{"x":64.104,"y":588.02},"width":48.085594,"height":11.017679,"page":288}],"sectionNumber":3203,"textBefore":"(Ground). Supplied by ","textAfter":".","comments":null,"startOffset":188,"endOffset":240,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618505Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8d5226f27f66289173fb941237a5a074","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.15,"y":82.84003},"width":10.059998,"height":10.0905,"page":288},{"topLeft":{"x":469.42,"y":82.84003},"width":10.059998,"height":10.0905,"page":288}],"sectionNumber":3206,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618505Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787035Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8f27fd944fafb5622cd5904b7ac29f5e","type":"PII","value":"375 50 50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":191.09,"y":53.200012},"width":14.619995,"height":10.0905,"page":288},{"topLeft":{"x":286.25,"y":53.200012},"width":10.059998,"height":10.0905,"page":288},{"topLeft":{"x":379.15,"y":53.200012},"width":10.059998,"height":10.0905,"page":288},{"topLeft":{"x":469.42,"y":53.200012},"width":10.059998,"height":10.0905,"page":288}],"sectionNumber":3208,"textBefore":null,"textAfter":null,"comments":null,"startOffset":9,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618505Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787036Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f519b3bee525022497d3664882800783","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":665.06},"width":28.467995,"height":10.018499,"page":288}],"sectionNumber":3191,"textBefore":null,"textAfter":null,"comments":null,"startOffset":96,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618505Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"52498205eeb04926b20296fd168bef46","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study design","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":313.88397,"y":611.66},"width":61.863556,"height":11.017679,"page":289}],"sectionNumber":3217,"textBefore":"conditions established during ","textAfter":" Study No.","comments":null,"startOffset":994,"endOffset":1007,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618505Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7bbb422b209c821003281931446938ea","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study design","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":375.26633,"y":548.99},"width":64.63458,"height":11.017679,"page":289}],"sectionNumber":3217,"textBefore":"performed previously in ","textAfter":" Study No.","comments":null,"startOffset":1385,"endOffset":1398,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618506Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2139a1f975f004773d8034fbd789f78d","type":"PII","value":"2250 300 50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.93,"y":752.9},"width":19.044998,"height":10.0905,"page":289},{"topLeft":{"x":283.97,"y":752.9},"width":14.619995,"height":10.0905,"page":289},{"topLeft":{"x":379.15,"y":752.9},"width":10.059998,"height":10.0905,"page":289},{"topLeft":{"x":469.42,"y":752.9},"width":10.059998,"height":10.0905,"page":289}],"sectionNumber":3210,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618506Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787036Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62f6201e0c652344cffb3edb26021298","type":"hint_only","value":"test facility","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study design","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":712.82},"width":58.209297,"height":11.017679,"page":289}],"sectionNumber":3217,"textBefore":null,"textAfter":null,"comments":null,"startOffset":113,"endOffset":126,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618506Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"79f9fe574c127a19cf7b9f41c92a5cf8","type":"CBI_author","value":"Large","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":303.17,"y":51.27997},"width":24.127167,"height":10.526819,"page":289}],"sectionNumber":3212,"textBefore":null,"textAfter":" Unclassified Cells","comments":null,"startOffset":103,"endOffset":108,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618506Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bd94a911266b91941d75a2aff7824add","type":"CBI_author","value":"Meier","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":345.31,"y":261.93},"width":27.330414,"height":11.017679,"page":291}],"sectionNumber":3217,"textBefore":"Probability Test. Kaplan-","textAfter":" survival estimates","comments":null,"startOffset":7217,"endOffset":7222,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618506Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a5dd236e4fa8ec4d9671be3c842c2d36","type":"CBI_author","value":"Kaplan","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":309.6557,"y":261.93},"width":32.883514,"height":11.017679,"page":291}],"sectionNumber":3217,"textBefore":"Exact Probability Test. ","textAfter":"-Meier survival estimates","comments":null,"startOffset":7210,"endOffset":7216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618507Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fdb053918c9c4f774570cf61d57012ba","type":"hint_only","value":"pathologist","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study design","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":310.15427,"y":161.34003},"width":49.88507,"height":11.017679,"page":291}],"sectionNumber":3217,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7869,"endOffset":7880,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618507Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"68c40e7f18f5bde6a54361becc385499","type":"PII","value":"75 375 2250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-17: Intergroup comparison of body weights (g) - selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.19,"y":282.09003},"width":10.059998,"height":10.018499,"page":292},{"topLeft":{"x":448.42,"y":282.09003},"width":14.619995,"height":10.018499,"page":292},{"topLeft":{"x":501.7,"y":282.09003},"width":19.044983,"height":10.018499,"page":292}],"sectionNumber":3226,"textBefore":null,"textAfter":null,"comments":null,"startOffset":20,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618508Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787037Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"72d0a1f8c4f292a076aa0b77a982fcd9","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":329.75604,"y":95.583984},"width":29.997986,"height":10.0905,"page":292}],"sectionNumber":3243,"textBefore":"mean, p<0.01 (","textAfter":") Food consumption,","comments":null,"startOffset":1093,"endOffset":1100,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618508Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"62c3da0f5168dc3280a6766d0d09859e","type":"PII","value":"75 375 2250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-17: Intergroup comparison of body weights (g) - selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.1,"y":282.09003},"width":10.059998,"height":10.018499,"page":292},{"topLeft":{"x":230.33,"y":282.09003},"width":14.619995,"height":10.018499,"page":292},{"topLeft":{"x":282.65,"y":282.09003},"width":19.044983,"height":10.018499,"page":292}],"sectionNumber":3226,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618508Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787038Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a3d575db659013c16c80e9e93b7da05b","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":325.1849,"y":107.94},"width":29.871979,"height":10.0905,"page":292}],"sectionNumber":3243,"textBefore":"mean, p<0.05 (","textAfter":") ** Statistically","comments":null,"startOffset":1011,"endOffset":1018,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618508Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d5ab4592a44b20b74ccd19ce81781ea7","type":"PII","value":"53-80","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":304.4382,"y":728.18},"width":26.631775,"height":11.017679,"page":292}],"sectionNumber":3217,"textBefore":"1-52 weeks, and ","textAfter":" weeks and","comments":null,"startOffset":9030,"endOffset":9035,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618508Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787038Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"56b2f45020f7e0200f6d041ffcdfb337","type":"PII","value":"561 19","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-17: Intergroup comparison of body weights (g) - selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":79.584,"y":122.70001},"width":14.490997,"height":10.0905,"page":292},{"topLeft":{"x":112.34,"y":122.70001},"width":10.054001,"height":10.0905,"page":292}],"sectionNumber":3229,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618509Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787038Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b19155b3e6ca3e3ae0f0e8b04c471d2a","type":"PII","value":"75 375 2250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-20: Mean Dose Received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":284.57,"y":227.70001},"width":10.059998,"height":10.018499,"page":293},{"topLeft":{"x":379.63,"y":227.70001},"width":14.619995,"height":10.018499,"page":293},{"topLeft":{"x":475.06,"y":227.70001},"width":19.044983,"height":10.018499,"page":293}],"sectionNumber":3239,"textBefore":null,"textAfter":null,"comments":null,"startOffset":28,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618509Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787038Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"86de3d732c0ff16e5334d11b4fe03693","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":325.20792,"y":525.83},"width":29.871979,"height":10.0905,"page":293}],"sectionNumber":3243,"textBefore":"mean, p<0.05 (","textAfter":") ** Statistically","comments":null,"startOffset":1799,"endOffset":1806,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618509Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"03fd6b57420e6c9771163129e187bd9d","type":"PII","value":"75 375 2250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-19: Intergroup comparison of food utilisation (g body weight gain/100g food consumed)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.22,"y":386.73},"width":10.059998,"height":10.018499,"page":293},{"topLeft":{"x":230.45,"y":386.73},"width":14.619995,"height":10.018499,"page":293},{"topLeft":{"x":282.77,"y":386.73},"width":19.044983,"height":10.018499,"page":293}],"sectionNumber":3236,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618509Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787039Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"23f9783607b0e1988692c55281c3b5c6","type":"PII","value":"75 375 2250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-19: Intergroup comparison of food utilisation (g body weight gain/100g food consumed)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.19,"y":386.73},"width":10.059998,"height":10.018499,"page":293},{"topLeft":{"x":448.42,"y":386.73},"width":14.619995,"height":10.018499,"page":293},{"topLeft":{"x":497.98,"y":386.73},"width":19.045013,"height":10.018499,"page":293}],"sectionNumber":3236,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618509Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787039Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3822e031abab55f7fd9abde6ee5a9a2e","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":329.61298,"y":513.59},"width":29.997986,"height":10.0905,"page":293}],"sectionNumber":3243,"textBefore":"mean, p<0.01 (","textAfter":") Lower overall","comments":null,"startOffset":1881,"endOffset":1888,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61851Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10a8f14da7f71635270b68f2dca55bec","type":"PII","value":"75 375 2250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-18: Intergroup comparison of food consumption (g/animal/day) - selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.22,"y":641.66},"width":10.059998,"height":10.018499,"page":293},{"topLeft":{"x":230.45,"y":641.66},"width":14.619995,"height":10.018499,"page":293},{"topLeft":{"x":282.77,"y":641.66},"width":19.044983,"height":10.018499,"page":293}],"sectionNumber":3232,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61851Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787039Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"16eafaf44eec1afd4a263a237e4149f2","type":"PII","value":"75 375 2250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-18: Intergroup comparison of food consumption (g/animal/day) - selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.19,"y":641.66},"width":10.059998,"height":10.018499,"page":293},{"topLeft":{"x":448.42,"y":641.66},"width":14.619995,"height":10.018499,"page":293},{"topLeft":{"x":497.98,"y":641.66},"width":19.045013,"height":10.018499,"page":293}],"sectionNumber":3232,"textBefore":null,"textAfter":null,"comments":null,"startOffset":20,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61851Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787039Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d40ae8af0773e35bec29bbb972a8f0e6","type":"CBI_author","value":"Dunnett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":329.61298,"y":314.01},"width":29.997986,"height":10.0905,"page":293}],"sectionNumber":3243,"textBefore":"mean, p<0.01 (","textAfter":") Dose rates","comments":null,"startOffset":2362,"endOffset":2369,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61851Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f1ca7bfb83a837196553d8b4d1c15244","type":"PII","value":"75 375 2250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-21: Intergroup comparison of liver weights","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":421.51,"y":578.39},"width":10.059998,"height":10.018499,"page":294},{"topLeft":{"x":461.38,"y":578.39},"width":14.619995,"height":10.018499,"page":294},{"topLeft":{"x":501.46,"y":578.39},"width":19.045013,"height":10.018499,"page":294}],"sectionNumber":3245,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61851Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78704Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4dd6ac137cd1dc1788e9d1bcd51b7dcf","type":"PII","value":"75 375 2250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-21: Intergroup comparison of liver weights","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":249.41,"y":578.39},"width":10.059998,"height":10.018499,"page":294},{"topLeft":{"x":290.69,"y":578.39},"width":14.619995,"height":10.018499,"page":294},{"topLeft":{"x":331.99,"y":578.39},"width":19.044983,"height":10.018499,"page":294}],"sectionNumber":3245,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618511Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78704Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b5f3da73eb7d1d6657fa46b954955080","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Microscopic findings:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":70.119995},"width":64.259224,"height":11.017679,"page":294}],"sectionNumber":3273,"textBefore":"ppm were within ","textAfter":" historical control","comments":null,"startOffset":1234,"endOffset":1247,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618511Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"68f6fdb5da2b3cff372a29e6cbf42184","type":"PII","value":"75 375 2250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-22: Intergroup comparison of selected non-neoplastic findings in males","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":346.03,"y":274.64996},"width":10.059998,"height":10.018499,"page":294},{"topLeft":{"x":418.39,"y":274.64996},"width":14.619995,"height":10.018499,"page":294},{"topLeft":{"x":488.02,"y":274.64996},"width":19.044983,"height":10.018499,"page":294}],"sectionNumber":3250,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618511Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78704Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fc9b556bb6dba1f74b29a0740233d373","type":"PII","value":"75 375 2250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-23: Summary of hepatocellular neoplastic and proliferative findings in the liver in males","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.61,"y":628.34},"width":10.059998,"height":10.018499,"page":295},{"topLeft":{"x":326.59,"y":628.34},"width":14.619995,"height":10.018499,"page":295},{"topLeft":{"x":384.79,"y":628.34},"width":19.044983,"height":10.018499,"page":295}],"sectionNumber":3254,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618512Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787041Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4eeb342d46acd1aea7aaec30957411cc","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Microscopic findings:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":140.4787,"y":152.22003},"width":64.259186,"height":11.017679,"page":295}],"sectionNumber":3273,"textBefore":"higher than the ","textAfter":" historical control","comments":null,"startOffset":2833,"endOffset":2846,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618512Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dbc26ae7c54124912baf9ad77e32ffd4","type":"CBI_address","value":"Charles River, Edinburgh","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.5-25: Summary of adenomas and carcinomas in the liver in males","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":430.51,"y":313.64996},"width":93.27698,"height":10.0905,"page":295}],"sectionNumber":3264,"textBefore":null,"textAfter":" HCD (minimummaximum)","comments":null,"startOffset":6,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618512Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a21b2982c4aafd3d5b65a56b50b10fe0","type":"PII","value":"75 375 2250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-25: Summary of adenomas and carcinomas in the liver in males","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.17,"y":292.76996},"width":10.059998,"height":10.0905,"page":295},{"topLeft":{"x":331.03,"y":292.76996},"width":14.619995,"height":10.0905,"page":295},{"topLeft":{"x":383.71,"y":292.76996},"width":19.044983,"height":10.0905,"page":295}],"sectionNumber":3266,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618513Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787041Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5ecab98f79eb51ea74e4c4c8694b934f","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-25: Summary of adenomas and carcinomas in the liver in males","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.37,"y":281.85004},"width":10.059998,"height":10.0905,"page":295},{"topLeft":{"x":282.17,"y":281.85004},"width":10.059998,"height":10.0905,"page":295}],"sectionNumber":3267,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618513Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787041Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"67ac8f5eb44285ef3fe17c1c583880d0","type":"PII","value":"50 50 49 50 250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-23: Summary of hepatocellular neoplastic and proliferative findings in the liver in males","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":208.37,"y":613.46},"width":10.059998,"height":10.0905,"page":295},{"topLeft":{"x":268.61,"y":613.46},"width":10.059998,"height":10.0905,"page":295},{"topLeft":{"x":328.87,"y":613.46},"width":10.059998,"height":10.0905,"page":295},{"topLeft":{"x":389.23,"y":613.46},"width":10.059998,"height":10.0905,"page":295},{"topLeft":{"x":471.82,"y":613.46},"width":14.619995,"height":10.0905,"page":295}],"sectionNumber":3255,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618513Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787042Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dfa46abf1d39cae7bbd5486fe0453e89","type":"hint_only","value":"performing laboratory","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Microscopic findings:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":740.9},"width":99.697624,"height":11.017679,"page":295}],"sectionNumber":3273,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1541,"endOffset":1562,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618513Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a6326f33e4cae15ee3dedfc7e9a50213","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Microscopic findings:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":287.97098,"y":504.71},"width":37.931763,"height":10.526819,"page":296}],"sectionNumber":3271,"textBefore":"Report No: TK0258437. ","textAfter":" File No.","comments":null,"startOffset":208,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618514Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a2ef05d68c4dd7846433cae0fef464e2","type":"CBI_author","value":"Cowie D.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Microscopic findings:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.59795,"y":527.63},"width":39.106964,"height":10.526819,"page":296}],"sectionNumber":3271,"textBefore":"Report: K-CA 5.5/04 ","textAfter":" (2015). SYN545974","comments":null,"startOffset":20,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618514Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3146ae0a84e0e3c9057865eec42a5ce8","type":"CBI_author","value":"Robertson B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Microscopic findings:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.23004,"y":567.47},"width":56.38495,"height":11.017679,"page":296}],"sectionNumber":3273,"textBefore":"and females. (","textAfter":", 2015a) Guidelines:","comments":null,"startOffset":4305,"endOffset":4316,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618514Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce7250d62aee11964333607c9af65fc2","type":"CBI_address","value":"Syngenta Crop Protection LTD","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Microscopic findings:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":293.9972,"y":516.11},"width":126.11771,"height":10.526819,"page":296}],"sectionNumber":3271,"textBefore":"in CD-1 Mice. ","textAfter":", 01 September","comments":null,"startOffset":126,"endOffset":154,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618514Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fbe3ff7dfe943fb9da865f6811d737de","type":"CBI_address","value":"Charles River Edinburgh","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.5-26: SYN545974 Liver Carcinogenicity Data in the CD-1 Mouse","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":405.91,"y":632.06},"width":54.65796,"height":10.018499,"page":297},{"topLeft":{"x":391.63,"y":621.62},"width":42.940002,"height":10.018499,"page":297}],"sectionNumber":3276,"textBefore":null,"textAfter":" Historical Control","comments":null,"startOffset":14,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618515Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2128569ec4f3ec69e84c4de9a564c71c","type":"PII","value":"50 50 49 50 247","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-26: SYN545974 Liver Carcinogenicity Data in the CD-1 Mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":179.9,"y":588.74},"width":10.059998,"height":10.0905,"page":297},{"topLeft":{"x":229.61,"y":588.74},"width":10.059998,"height":10.0905,"page":297},{"topLeft":{"x":282.77,"y":588.74},"width":10.059998,"height":10.0905,"page":297},{"topLeft":{"x":343.03,"y":588.74},"width":10.059998,"height":10.0905,"page":297},{"topLeft":{"x":425.95,"y":588.74},"width":14.619995,"height":10.0905,"page":297}],"sectionNumber":3277,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618515Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787043Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b2eb725b1204e50ea96688306febfe62","type":"PII","value":"75 375 2250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-26: SYN545974 Liver Carcinogenicity Data in the CD-1 Mouse","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.61,"y":621.62},"width":10.059998,"height":10.018499,"page":297},{"topLeft":{"x":280.49,"y":621.62},"width":14.619995,"height":10.018499,"page":297},{"topLeft":{"x":338.59,"y":621.62},"width":19.044983,"height":10.018499,"page":297}],"sectionNumber":3276,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618515Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787044Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d4768abc1e08e391e13ece3ef19480b","type":"CBI_author","value":"Omiecinski C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Relevant Data for the assessment of the Mode of Action hypothesis for SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":377.09363,"y":400.77},"width":62.073273,"height":11.017679,"page":298}],"sectionNumber":3283,"textBefore":"activate CAR (","textAfter":", 2014) –","comments":null,"startOffset":239,"endOffset":251,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618515Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92df00cb5c12ced019b7ec204d7bb68b","type":"CBI_author","value":"Haines, C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Relevant Data for the assessment of the Mode of Action hypothesis for SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.02286,"y":361.89},"width":48.25125,"height":11.017679,"page":298}],"sectionNumber":3283,"textBefore":"(Strepka, C. 2012a; ","textAfter":" 2012 and","comments":null,"startOffset":403,"endOffset":413,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618516Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e83352fa6817cf88d9a5887c7dbec16","type":"CBI_author","value":"Shearer, J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Relevant Data for the assessment of the Mode of Action hypothesis for SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.2335,"y":335.97},"width":48.240173,"height":11.017679,"page":298}],"sectionNumber":3283,"textBefore":"CD-1 mouse (","textAfter":" 2015) see","comments":null,"startOffset":565,"endOffset":576,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618516Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9014a4250b7911557a0739d0cd8fb6d7","type":"CBI_author","value":"Key","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"IPCS/ILSI Framework for the Evaluation of the Human Health Relevance of a Hypothesized Mode\nof Action","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":168.1891,"y":114.17999},"width":19.845291,"height":10.929359,"page":298}],"sectionNumber":3294,"textBefore":"Dose Concordance of ","textAfter":" Events: For","comments":null,"startOffset":655,"endOffset":658,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618516Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3ba2a8c88e5f1a369205ba19ba7f06de","type":"CBI_author","value":"Robertson, B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Relevant Data for the assessment of the Mode of Action hypothesis for SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":339.16016,"y":309.81},"width":61.973907,"height":11.017679,"page":298}],"sectionNumber":3283,"textBefore":"CD1 mouse (","textAfter":" 2015a) –","comments":null,"startOffset":658,"endOffset":671,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618516Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2130c95218ddf78741491e9585448d9b","type":"CBI_author","value":"Lowes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Relevant Data for the assessment of the Mode of Action hypothesis for SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":299.86935,"y":283.64996},"width":30.355377,"height":11.017679,"page":298}],"sectionNumber":3283,"textBefore":"human relevance (","textAfter":" 2015 &","comments":null,"startOffset":841,"endOffset":846,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618516Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"66f8d225d3bba2a16cd43997e5ec16fe","type":"CBI_author","value":"Elcombe, B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Relevant Data for the assessment of the Mode of Action hypothesis for SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":338.63043,"y":361.89},"width":56.89554,"height":11.017679,"page":298}],"sectionNumber":3283,"textBefore":"C. 2012 and ","textAfter":" 2015) –","comments":null,"startOffset":423,"endOffset":434,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618517Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae6d79a94dece6f2e2db57ac6cb152ca","type":"CBI_author","value":"Hill","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"IPCS/ILSI Framework for the Evaluation of the Human Health Relevance of a Hypothesized Mode\nof Action","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.32832,"y":189.41998},"width":18.100967,"height":11.017679,"page":298}],"sectionNumber":3294,"textBefore":"been described, the ","textAfter":" criteria and","comments":null,"startOffset":207,"endOffset":211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618517Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5fd8cc21fc4a34fe25a57c018429b518","type":"CBI_author","value":"Strepka, C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Relevant Data for the assessment of the Mode of Action hypothesis for SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":150.00095,"y":361.89},"width":51.25406,"height":11.017679,"page":298}],"sectionNumber":3283,"textBefore":"action endpoints (","textAfter":" 2012a; Haines,","comments":null,"startOffset":384,"endOffset":395,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618517Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9cc1e43757a6e6ebeb4c051f5df8579e","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Relevant Data for the assessment of the Mode of Action hypothesis for SYN545974","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":78.0,"y":469.0},"width":443.0,"height":297.0,"page":298}],"sectionNumber":3283,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618517Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4873fcc2cb7ca39621bcf524725baada","type":"CBI_author","value":"Key","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"IPCS/ILSI Framework for the Evaluation of the Human Health Relevance of a Hypothesized Mode\nof Action","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":242.13722,"y":564.59},"width":19.366226,"height":10.67124,"page":299}],"sectionNumber":3294,"textBefore":"Dose Concordance of ","textAfter":" and Associative","comments":null,"startOffset":2305,"endOffset":2308,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618517Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7649c8f97429857bf9535609a0227869","type":"CBI_author","value":"Key","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Temporal Concordance of Key Events","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":190.31328,"y":334.05},"width":19.944656,"height":10.929359,"page":299}],"sectionNumber":3306,"textBefore":"Temporal Concordance of ","textAfter":" Events When","comments":null,"startOffset":24,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618518Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"97d2710f1a77774a8791f3da2557aa2e","type":"CBI_author","value":"Key","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Temporal Concordance of Key Events","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":92.30184,"y":329.25},"width":14.249916,"height":9.65418,"page":300}],"sectionNumber":3306,"textBefore":"Event Occurring No: ","textAfter":"/Associative Event Not","comments":null,"startOffset":2238,"endOffset":2241,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618518Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee36c25bf2327bfc046ce2133542207c","type":"CBI_author","value":"Omiecinski","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Reproducibility and Consistency","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":478.06332,"y":84.54401},"width":51.552155,"height":11.017679,"page":300}],"sectionNumber":3307,"textBefore":"the rat (","textAfter":", 2014), tumours","comments":null,"startOffset":1404,"endOffset":1414,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618518Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f1ffd0b39c4cdfea09630e5fb2c9651","type":"CBI_author","value":"Key","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-28: Temporal Concordance of Key and Associative Events across the SYN545974 Mouse\nDatabase","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":582.47},"width":16.533997,"height":10.018499,"page":300}],"sectionNumber":3296,"textBefore":null,"textAfter":"/Associative Event","comments":null,"startOffset":0,"endOffset":3,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618519Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fd65e4501fec09ebdfcd59560d7728fb","type":"CBI_author","value":"Key","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Temporal Concordance of Key Events","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":94.93897,"y":338.49},"width":14.370514,"height":9.65418,"page":300}],"sectionNumber":3306,"textBefore":"Mouse Database Yes: ","textAfter":"/Associative Event Occurring","comments":null,"startOffset":2202,"endOffset":2205,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618519Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"88e61a64d113418fa3ececf8f663edf6","type":"CBI_author","value":"Key","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Temporal Concordance of Key Events","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":253.94257,"y":634.22},"width":19.356262,"height":10.67124,"page":300}],"sectionNumber":3306,"textBefore":"Temporal Concordance of ","textAfter":" and Associative","comments":null,"startOffset":2134,"endOffset":2137,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618519Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d0ca304fd62002ec65077ba026eb255","type":"CBI_author","value":"Haines","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Alternative MOA hypotheses","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":466.789,"y":122.099976},"width":31.547668,"height":11.017679,"page":301}],"sectionNumber":3309,"textBefore":"AhR activation (","textAfter":", 2012). Hepatocellular","comments":null,"startOffset":1544,"endOffset":1550,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618519Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"02e3a848a3ba3753b316b01572a60d8b","type":"CBI_author","value":"Sun","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-29: Alternative MOAs for Hepatocarcinogenesis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.40604,"y":180.29999},"width":15.084991,"height":10.0905,"page":302}],"sectionNumber":3312,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1459,"endOffset":1462,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61852Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1c4be923417ba2bb894bf69215d67758","type":"CBI_author","value":"Wollny","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-29: Alternative MOAs for Hepatocarcinogenesis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.779,"y":365.37},"width":28.03601,"height":10.0905,"page":302}],"sectionNumber":3312,"textBefore":"2014; Bohnenberger, 2013; ","textAfter":", 2013; Roth,","comments":null,"startOffset":311,"endOffset":317,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61852Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"35fef7d3094b655a96245c7416ee1f57","type":"CBI_author","value":"Shearer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-29: Alternative MOAs for Hepatocarcinogenesis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":458.08997,"y":75.400024},"width":28.350983,"height":10.0905,"page":302}],"sectionNumber":3312,"textBefore":"liver (Elcombe, 2015; ","textAfter":", 2015, Strepka,","comments":null,"startOffset":2047,"endOffset":2054,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618521Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b6a636263b4eeb753227faa0c301a8d","type":"CBI_author","value":"Shearer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Data Gaps, Uncertainties and Inconsistencies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":255.65666,"y":615.02},"width":34.550552,"height":11.017679,"page":302}],"sectionNumber":3310,"textBefore":"duration (Elcombe, 2015; ","textAfter":", 2015, Robertson,","comments":null,"startOffset":694,"endOffset":701,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618521Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b665f7cb599a5ba76d1de4acd96ce268","type":"CBI_author","value":"Sokolowski","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-29: Alternative MOAs for Hepatocarcinogenesis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":240.90201,"y":365.37},"width":43.317993,"height":10.0905,"page":302}],"sectionNumber":3312,"textBefore":"aneugenicity (Sokolowski, 2012; ","textAfter":", 2014; Bohnenberger,","comments":null,"startOffset":273,"endOffset":283,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618521Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f48b27b2e436016a20a503bdbc23c88c","type":"CBI_author","value":"Strepka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Data Gaps, Uncertainties and Inconsistencies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":351.0115,"y":640.34},"width":34.69409,"height":11.017679,"page":302}],"sectionNumber":3310,"textBefore":"and hepatomegaly (","textAfter":", 2012). This","comments":null,"startOffset":511,"endOffset":518,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618521Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf21f46e22307779a6c5d0b9cff31f45","type":"CBI_author","value":"Dony","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-29: Alternative MOAs for Hepatocarcinogenesis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":163.34,"y":354.93},"width":21.087997,"height":10.0905,"page":302}],"sectionNumber":3312,"textBefore":"Roth, 2012 and ","textAfter":", 2014.) Late","comments":null,"startOffset":340,"endOffset":344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618522Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c5072eef9f14259bbdd4f5b8fe55d87","type":"CBI_author","value":"Bohnenberger","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-29: Alternative MOAs for Hepatocarcinogenesis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":315.59296,"y":365.37},"width":51.94806,"height":10.0905,"page":302}],"sectionNumber":3312,"textBefore":"2012; Sokolowski, 2014; ","textAfter":", 2013; Wollny,","comments":null,"startOffset":291,"endOffset":303,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618522Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d91e036bd96fc87e82e1a1dfa307b8eb","type":"CBI_author","value":"Sokolowski","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-29: Alternative MOAs for Hepatocarcinogenesis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":166.33699,"y":365.37},"width":43.435013,"height":10.0905,"page":302}],"sectionNumber":3312,"textBefore":"and aneugenicity (","textAfter":", 2012; Sokolowski,","comments":null,"startOffset":255,"endOffset":265,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618522Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb287efb5021b88b87d02962d620fff8","type":"CBI_author","value":"Elcombe","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-29: Alternative MOAs for Hepatocarcinogenesis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.15903,"y":75.400024},"width":32.94101,"height":10.0905,"page":302}],"sectionNumber":3312,"textBefore":"the liver (","textAfter":", 2015; Shearer,","comments":null,"startOffset":2032,"endOffset":2039,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618522Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"524df4ae7c06bc5c5edcb5e70fc182b4","type":"CBI_author","value":"Elcombe","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Data Gaps, Uncertainties and Inconsistencies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":183.19008,"y":615.02},"width":40.092667,"height":11.017679,"page":302}],"sectionNumber":3310,"textBefore":"longer duration (","textAfter":", 2015; Shearer,","comments":null,"startOffset":679,"endOffset":686,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618523Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"503313fce433f0b73640b47b19d6f9e4","type":"CBI_author","value":"Key","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Human Relevance","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":101.993286,"y":553.19},"width":19.955673,"height":10.929359,"page":303}],"sectionNumber":3322,"textBefore":"Relevance Are the ","textAfter":" Events in","comments":null,"startOffset":24,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618523Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f0f0222707258b65c3d4cf3d4c1a4326","type":"CBI_author","value":"Penn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-29: Alternative MOAs for Hepatocarcinogenesis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":235.27701,"y":631.82},"width":19.044998,"height":10.0905,"page":303}],"sectionNumber":3313,"textBefore":"and development (","textAfter":", 2015c; Davies,","comments":null,"startOffset":579,"endOffset":583,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618523Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2eb168ffc0d83aea9fced30140f3be51","type":"CBI_author","value":"Hackford","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-29: Alternative MOAs for Hepatocarcinogenesis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":346.86795,"y":631.82},"width":34.88498,"height":10.0905,"page":303}],"sectionNumber":3313,"textBefore":"2015c; Davies, 2015; ","textAfter":", 2015), there","comments":null,"startOffset":606,"endOffset":614,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618524Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2825ba4211f7881540787122cd546c7d","type":"CBI_author","value":"Key","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Human Relevance","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.71637,"y":447.47},"width":19.356293,"height":10.67124,"page":303}],"sectionNumber":3322,"textBefore":"6.5-30: Comparison of ","textAfter":" Events for","comments":null,"startOffset":592,"endOffset":595,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618524Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"549a1275f7a4d5f6b47175bdf1b02045","type":"CBI_author","value":"Davies","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-29: Alternative MOAs for Hepatocarcinogenesis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":289.56497,"y":631.82},"width":25.876038,"height":10.0905,"page":303}],"sectionNumber":3313,"textBefore":"development (Penn, 2015c; ","textAfter":", 2015; Hackford,","comments":null,"startOffset":592,"endOffset":598,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618524Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99dac9ebfddb88c885b68afe45f7079d","type":"CBI_author","value":"Shearer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-29: Alternative MOAs for Hepatocarcinogenesis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":480.943,"y":685.7},"width":28.350983,"height":10.0905,"page":303}],"sectionNumber":3313,"textBefore":"hepatocyte apoptosis (","textAfter":", 2015; Robertson,","comments":null,"startOffset":314,"endOffset":321,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618525Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be777ad2d3658cb9654857756b1f4ca4","type":"CBI_author","value":"Key","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-30: Comparison of Key Events for SYN545974 Across Species","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":412.77},"width":16.533997,"height":10.018499,"page":303}],"sectionNumber":3315,"textBefore":null,"textAfter":" Event","comments":null,"startOffset":0,"endOffset":3,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618525Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1e8c66fef709c078c130260e3676c66","type":"CBI_author","value":"Lowes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Therefore the human is not qualitatively different to the mouse in terms of the initial key event,\nSYN545974-induced CAR activation.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":125.01168,"y":539.75},"width":30.35537,"height":11.017679,"page":304}],"sectionNumber":3324,"textBefore":"mouse hepatocytes (","textAfter":", 2015 and","comments":null,"startOffset":770,"endOffset":775,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618525Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"147aea2ea3e3c6c6aa1864aec864884c","type":"CBI_author","value":"Lowes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CAR Activation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":100.43521,"y":740.9},"width":30.355347,"height":11.017679,"page":304}],"sectionNumber":3323,"textBefore":"the mouse (","textAfter":", 2015 –","comments":null,"startOffset":713,"endOffset":718,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618526Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"08b17feecdcd7bbbdde3c2ff53869f67","type":"CBI_author","value":"Lowes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Therefore the human is not qualitatively different to the mouse in terms of the initial key event,\nSYN545974-induced CAR activation.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":473.90872,"y":577.67},"width":30.355377,"height":11.017679,"page":304}],"sectionNumber":3324,"textBefore":"primary culture (","textAfter":", 2015 –","comments":null,"startOffset":549,"endOffset":554,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618526Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4143606b6237762810d6fafca3781829","type":"CBI_author","value":"Lowes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"CAR Activation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":202.00464,"y":753.5},"width":30.255997,"height":11.017679,"page":304}],"sectionNumber":3323,"textBefore":"CAR activation (","textAfter":", 2015a –","comments":null,"startOffset":633,"endOffset":638,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618526Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"997d61bb251374bfb6e0e7ccd0601b33","type":"CBI_author","value":"Lowes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Therefore the human is not qualitatively different to the mouse in terms of the initial key event,\nSYN545974-induced CAR activation.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.68887,"y":590.42},"width":30.355377,"height":11.017679,"page":304}],"sectionNumber":3324,"textBefore":"and proliferation (","textAfter":", 2015a –","comments":null,"startOffset":434,"endOffset":439,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618526Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"869da30015d57b9ba79c9e50f89dd70f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Therefore, these data support the conclusion that SYN545974 does not pose a hepatocarcinogenic\nhazard to humans","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":189.80515,"y":406.53},"width":38.16078,"height":10.526819,"page":305}],"sectionNumber":3326,"textBefore":"August 2015, Unpublished. ","textAfter":" File No.","comments":null,"startOffset":263,"endOffset":271,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618526Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a7512637b17c2f6ef2e44916d20ee0ce","type":"CBI_author","value":"Elcombe B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Therefore, these data support the conclusion that SYN545974 does not pose a hepatocarcinogenic\nhazard to humans","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.58247,"y":441.11},"width":48.080917,"height":10.526819,"page":305}],"sectionNumber":3326,"textBefore":"Report: K-CA 5.5/05 ","textAfter":" (2015). SYN545974:","comments":null,"startOffset":20,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618526Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e460c1057f6b467b66d0d2a7dc1a1d2d","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Therefore, these data support the conclusion that SYN545974 does not pose a hepatocarcinogenic\nhazard to humans","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":361.26865,"y":341.37},"width":84.6832,"height":11.017679,"page":305}],"sectionNumber":3328,"textBefore":null,"textAfter":null,"comments":null,"startOffset":355,"endOffset":372,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618527Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c3fe41f03fba27a385e696050896596a","type":"hint_only","value":"test facility","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Therefore, these data support the conclusion that SYN545974 does not pose a hepatocarcinogenic\nhazard to humans","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":134.69377,"y":328.65},"width":56.752014,"height":11.017679,"page":305}],"sectionNumber":3328,"textBefore":null,"textAfter":null,"comments":null,"startOffset":409,"endOffset":422,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618527Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db28471df121b96aaa7b3dbee4fd1dbd","type":"CBI_address","value":"CXR Biosciences, 2, James Lindsay Place, Dundee Technopole, Dundee, DD1 5JJ, Scotland, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Therefore, these data support the conclusion that SYN545974 does not pose a hepatocarcinogenic\nhazard to humans","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":245.74712,"y":429.59},"width":258.11774,"height":10.526819,"page":305},{"topLeft":{"x":133.82,"y":418.05},"width":131.05765,"height":10.526819,"page":305}],"sectionNumber":3326,"textBefore":"Male CD-1 Mice. ","textAfter":". Laboratory Report","comments":null,"startOffset":113,"endOffset":202,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618527Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9b07600983739ccf3f23b21c952b030b","type":"CBI_author","value":"Cowie D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Therefore, these data support the conclusion that SYN545974 does not pose a hepatocarcinogenic\nhazard to humans","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":461.00943,"y":480.95},"width":40.50113,"height":11.017679,"page":305}],"sectionNumber":3328,"textBefore":"to SYN545974 (","textAfter":", 2015) Guidelines:","comments":null,"startOffset":182,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618527Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3239301e45270aced7c76d5f0acb3176","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Therefore, these data support the conclusion that SYN545974 does not pose a hepatocarcinogenic\nhazard to humans","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":78.0,"y":511.0},"width":432.0,"height":243.0,"page":305}],"sectionNumber":3328,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618527Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e000be453767918260505ad3f3663f3a","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":296.49},"width":28.467995,"height":10.018499,"page":306}],"sectionNumber":3330,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":88,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618528Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"66a224a233ec7135d842761e0018a40b","type":"CBI_address","value":"CXR Biosciences","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Diet:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":192.63168,"y":334.53},"width":79.62692,"height":11.017679,"page":307}],"sectionNumber":3335,"textBefore":"were prepared by ","textAfter":" (in accordance","comments":null,"startOffset":128,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618528Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"062975bc632784beb6a6a01d5f11822d","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":184.73999},"width":23.024803,"height":11.017679,"page":307}],"sectionNumber":3336,"textBefore":"start of study. ","textAfter":" to start","comments":null,"startOffset":225,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618528Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0da4743c65c7fede07ccd11a6d0c4dfd","type":"CBI_address","value":"Charles River UK Limited, Manston Road, Margate, Kent, CT9 4LT, England","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Animals:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":152.98705,"y":396.57},"width":345.97797,"height":11.017679,"page":307}],"sectionNumber":3334,"textBefore":"were obtained from ","textAfter":".","comments":null,"startOffset":127,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618528Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"16e477f5fb48c2c4c8edfdc14c30503f","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":238.829,"y":733.1},"width":18.50502,"height":10.0905,"page":307}],"sectionNumber":3331,"textBefore":"CD-1 (","textAfter":")","comments":null,"startOffset":43,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618529Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7433a1d419afded293cd2e2cb61dc504","type":"CBI_author","value":"Robertson B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":300.84198,"y":471.11},"width":59.832123,"height":11.017679,"page":307}],"sectionNumber":3333,"textBefore":"CD-1 mouse (","textAfter":", 2015). The","comments":null,"startOffset":239,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618529Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bbbb90f9c879d7496dc21fdb5d628b8d","type":"CBI_author","value":"Histopathology Haematoxylin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":53.919983},"width":72.5944,"height":10.929359,"page":308}],"sectionNumber":3340,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618529Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5c1f88293b78338040b4e8ef7b69e10e","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Experimental Procedures","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.22,"y":716.18},"width":22.90335,"height":11.017679,"page":308}],"sectionNumber":3337,"textBefore":"termination. Clinical observations: ","textAfter":" to the","comments":null,"startOffset":180,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618529Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"152dd5b73a38e58f9a86c3b83dc59120","type":"CBI_author","value":"John","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":111.81889,"y":728.18},"width":21.8656,"height":11.017679,"page":309}],"sectionNumber":3340,"textBefore":"of 4- Professor ","textAfter":" Foster, Consultant","comments":null,"startOffset":177,"endOffset":181,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61853Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"09000b0923936d174bf3b7436e57eaac","type":"CBI_author","value":"Foster","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.91104,"y":728.18},"width":28.434402,"height":11.017679,"page":309}],"sectionNumber":3340,"textBefore":"4- Professor John ","textAfter":", Consultant Pathologist,","comments":null,"startOffset":182,"endOffset":188,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61853Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ab846e3446ba4d7d067a358738aa5e66","type":"hint_only","value":"pathologist","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Histopathology","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":229.21823,"y":728.18},"width":50.459198,"height":11.017679,"page":309}],"sectionNumber":3340,"textBefore":null,"textAfter":null,"comments":null,"startOffset":201,"endOffset":212,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618531Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"58760c3fa5c565a72be8d06f7da7d4f8","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Histopathology","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":351.0,"y":740.0},"width":188.0,"height":13.0,"page":309}],"sectionNumber":3340,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618531Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9a773f0866fb2353122820ce713114b2","type":"CBI_author","value":"Lowes D.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.61823,"y":124.97998},"width":39.575073,"height":10.526819,"page":310}],"sectionNumber":3343,"textBefore":"Report: K-CA 5.5/06 ","textAfter":" (2015). SYN545974:","comments":null,"startOffset":20,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618531Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e221b65fc2a1343ffefeb3e9a4b1a294","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and Pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":395.4496,"y":90.42401},"width":38.05127,"height":10.526819,"page":310}],"sectionNumber":3343,"textBefore":"August 2015, Unpublished. ","textAfter":" File No.","comments":null,"startOffset":314,"endOffset":322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618532Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d0b917da370a636d23a1a718b2e2e93","type":"CBI_address","value":"CXR Biosciences, 2, James Lindsay Place, Dundee Technopole, Dundee, DD1 5JJ, Scotland, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and Pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":442.75168,"y":113.46002},"width":21.557434,"height":10.526819,"page":310},{"topLeft":{"x":133.82,"y":101.94},"width":367.93875,"height":10.526819,"page":310}],"sectionNumber":3343,"textBefore":"Mouse Hepatocyte Cultures. ","textAfter":". Laboratory Report","comments":null,"startOffset":164,"endOffset":253,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618532Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ebe0480985a7f9e02e469935e37e1056","type":"CBI_author","value":"Elcombe B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.28943,"y":176.82},"width":50.21631,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":"time-point assessed. (","textAfter":", 2015) Guidelines:","comments":null,"startOffset":3094,"endOffset":3103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618532Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75be2f8f4786bf8b4f379973804af3e3","type":"hint_only","value":"test facility","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Sacrifice and Pathology:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":134.69377,"y":716.18},"width":56.752014,"height":11.017679,"page":311}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3301,"endOffset":3314,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618532Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bae07792c798395b2ae6bf9ea9837d3","type":"CBI_author","value":"Leibowitz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":137.15567,"y":553.67},"width":45.612656,"height":11.017679,"page":311}],"sectionNumber":3346,"textBefore":"culture plates in ","textAfter":" CL15 medium.","comments":null,"startOffset":500,"endOffset":509,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618532Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3aab0d1b1cebbf826efaf09e5c6addfc","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Sacrifice and Pathology:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":361.4439,"y":728.9},"width":84.6832,"height":11.017679,"page":311}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3247,"endOffset":3264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618533Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2e255f4b7b57f5a3b376010e453a29c3","type":"CBI_address","value":"Charles River UK Ltd, Manston Road, Margate, Kent CT9 4LT, England, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.77,"y":569.87},"width":282.29504,"height":10.0905,"page":312}],"sectionNumber":3348,"textBefore":null,"textAfter":null,"comments":null,"startOffset":101,"endOffset":171,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618533Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d09edc6d22af33768f3d2db437cc0d25","type":"CBI_author","value":"Leibowitz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":444.71},"width":45.72303,"height":11.017679,"page":312}],"sectionNumber":3350,"textBefore":"culture plates in ","textAfter":" CL15 medium","comments":null,"startOffset":478,"endOffset":487,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618533Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c557b4cf9e1f6e21ccf125b17bb1c109","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":696.74},"width":28.467995,"height":10.018499,"page":312}],"sectionNumber":3347,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618533Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a37990444f97b88e2eab66d2a93052a3","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":239.069,"y":591.62},"width":18.505005,"height":10.0905,"page":312}],"sectionNumber":3348,"textBefore":"CD-1 (","textAfter":")","comments":null,"startOffset":41,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618533Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0cca548998d8a0926ea497f5102c162a","type":"CBI_author","value":"Leibowitz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.38864,"y":407.37},"width":45.601624,"height":11.017679,"page":312}],"sectionNumber":3350,"textBefore":"were cultured in ","textAfter":" CL15 medium","comments":null,"startOffset":690,"endOffset":699,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618534Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e38a39a8683f03221814220c6e303bfa","type":"CBI_author","value":"Lowry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":243.65,"y":243.53998},"width":29.637756,"height":10.929359,"page":312}],"sectionNumber":3350,"textBefore":"the method of ","textAfter":" et al.","comments":null,"startOffset":1859,"endOffset":1864,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618534Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f509e275e6457effec6b66805961e4e","type":"CBI_author","value":"Leibowitz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":137.15567,"y":71.91998},"width":45.612656,"height":11.017679,"page":314}],"sectionNumber":3366,"textBefore":"culture plates in ","textAfter":" HCL15 medium.","comments":null,"startOffset":510,"endOffset":519,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618534Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"470749aef9e6803e1d8b39319e0fef63","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":351.10757,"y":312.33002},"width":38.05127,"height":10.526819,"page":314}],"sectionNumber":3363,"textBefore":"August 2015, Unpublished. ","textAfter":" File No.","comments":null,"startOffset":310,"endOffset":318,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618534Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cda3b5e6c967899eaf0c902b940dc5b8","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":362.3003,"y":247.02002},"width":84.31885,"height":11.017679,"page":314}],"sectionNumber":3365,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2899,"endOffset":2916,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618535Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43811167ab81aa5048b7c2db142f25be","type":"CBI_author","value":"Lowes D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.28943,"y":398.61},"width":41.119385,"height":11.017679,"page":314}],"sectionNumber":3365,"textBefore":"PROD activity). (","textAfter":", 2015) Guidelines:","comments":null,"startOffset":2748,"endOffset":2755,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618535Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5c69b8364f11e35fb2667e41575d4b79","type":"CBI_author","value":"Lowes D.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.58247,"y":346.77},"width":39.70865,"height":10.526819,"page":314}],"sectionNumber":3363,"textBefore":"Report: K-CA 5.5/07 ","textAfter":" (2015a). SYN545974:","comments":null,"startOffset":20,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618535Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3957edb093b34fc14f0f14d76eb981ad","type":"hint_only","value":"test facility","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":134.69377,"y":234.41998},"width":56.752014,"height":11.017679,"page":314}],"sectionNumber":3365,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2953,"endOffset":2966,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618535Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"02729e2572ea89aa0d2c9f6cc65d4cf7","type":"CBI_address","value":"CXR Biosciences, 2, James Lindsay Place, Dundee Technopole, Dundee, DD1 5JJ, Scotland, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":419.6323,"y":335.37},"width":84.31546,"height":10.526819,"page":314},{"topLeft":{"x":133.82,"y":323.85004},"width":305.186,"height":10.526819,"page":314}],"sectionNumber":3363,"textBefore":"Human Hepatocyte Cultures. ","textAfter":". Laboratory Report","comments":null,"startOffset":160,"endOffset":249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618535Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"898b490d9bf547c2c7bf9cd76ce69ad0","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":308.13},"width":28.467995,"height":10.018499,"page":315}],"sectionNumber":3367,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618536Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"28e09f3a23780fc6ce38f9c88ed19091","type":"CBI_author","value":"Leibowitz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":236.87999,"y":98.22003},"width":45.723038,"height":11.017679,"page":315}],"sectionNumber":3369,"textBefore":"culture plates, using ","textAfter":" HCL15 as","comments":null,"startOffset":544,"endOffset":553,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618536Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ca4bb08c35fb46dc7c877f62f830efac","type":"CBI_address","value":"Cheshire","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":357.6466,"y":161.46002},"width":40.081604,"height":11.017679,"page":315}],"sectionNumber":3369,"textBefore":"Kingsland Grange, Warrington, ","textAfter":", WA1 4SR.","comments":null,"startOffset":241,"endOffset":249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618536Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8586902eb837df8358321b34d5dea86e","type":"CBI_author","value":"Warrington","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":300.5808,"y":161.46002},"width":51.839203,"height":11.017679,"page":315}],"sectionNumber":3369,"textBefore":"7 Kingsland Grange, ","textAfter":", Cheshire, WA1","comments":null,"startOffset":229,"endOffset":239,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618536Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"97a80e4f2b23a740e030fda9f063091e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":317.99405,"y":328.89},"width":38.05127,"height":10.526819,"page":318}],"sectionNumber":3394,"textBefore":"October 2014. Unpublished. ","textAfter":" File No.SYN545974_50044","comments":null,"startOffset":305,"endOffset":313,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618537Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9e4d5347c2ed79ba0423355ee89c6037","type":"CBI_address","value":"Department of Veterinary & Biomedical Sciences, 101 Life Sciences Building, Penn State University, University Park, PA 16802, USA","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":227.09,"y":351.93},"width":277.12128,"height":10.526819,"page":318},{"topLeft":{"x":133.82,"y":340.41},"width":266.33456,"height":10.526819,"page":318}],"sectionNumber":3394,"textBefore":"and Human CAR. ","textAfter":". Laboratory Report","comments":null,"startOffset":111,"endOffset":240,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618537Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3882ee6ebbed78ab7921afeb073ad5c","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":344.55072,"y":275.01},"width":83.23697,"height":11.017679,"page":318}],"sectionNumber":3396,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2639,"endOffset":2656,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618537Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e80c02508e52dee9127f6d8e6eae5906","type":"CBI_author","value":"Penn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.6674,"y":199.02002},"width":23.079987,"height":11.017679,"page":318}],"sectionNumber":3397,"textBefore":"was developed at ","textAfter":" State University.","comments":null,"startOffset":168,"endOffset":172,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618537Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"226a5210f4a169dd19b7791f2cf877d6","type":"CBI_author","value":"Lowes D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":455.48944,"y":415.29},"width":41.119385,"height":11.017679,"page":318}],"sectionNumber":3396,"textBefore":"SYN545974 treatment. (","textAfter":", 2015a) Guidelines:","comments":null,"startOffset":2488,"endOffset":2495,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618537Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8bf66f2fca4196c7d0c35b0518e0d071","type":"CBI_author","value":"Omiecinski C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.58247,"y":363.45},"width":58.548904,"height":10.526819,"page":318}],"sectionNumber":3394,"textBefore":"Report: K-CA 5.5/08 ","textAfter":" (2014). SYN545974:","comments":null,"startOffset":20,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618538Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5eb0943ded0f531a04dec0367bb3a29","type":"CBI_address","value":"Syngenta Crop Protection","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: SYN545974 is a direct activator of CAR from mouse, rat and human, and has high efficacy (i.e.\nmaximal fold change compared to model activators) in all three species.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.97,"y":487.79},"width":93.99704,"height":10.0905,"page":319}],"sectionNumber":3398,"textBefore":null,"textAfter":", LLC (Greensboro,","comments":null,"startOffset":78,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618538Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"22b8e36339956f7a4f74555547feb73f","type":"CBI_author","value":"Auerbach","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":126.14,"y":270.93},"width":45.645782,"height":10.929359,"page":319}],"sectionNumber":3400,"textBefore":"described in (","textAfter":" et al,","comments":null,"startOffset":200,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618538Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f1f483b6797a4fdb9981037e2e9a357a","type":"PII","value":"10-30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.19632,"y":702.86},"width":26.653687,"height":11.017679,"page":319}],"sectionNumber":3397,"textBefore":"SYN545974 concentrations of ","textAfter":" μM. SYN545974","comments":null,"startOffset":1607,"endOffset":1612,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618538Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787056Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"97bfdc865e8fcca4785de200f41790e4","type":"CBI_author","value":"Dekeyser","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.5784,"y":270.93},"width":42.57666,"height":10.929359,"page":319}],"sectionNumber":3400,"textBefore":null,"textAfter":null,"comments":null,"startOffset":222,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618539Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4d1dc502825cc8f1841acb88f3819a16","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: SYN545974 is a direct activator of CAR from mouse, rat and human, and has high efficacy (i.e.\nmaximal fold change compared to model activators) in all three species.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":461.87},"width":28.467995,"height":10.018499,"page":319}],"sectionNumber":3398,"textBefore":null,"textAfter":null,"comments":null,"startOffset":160,"endOffset":167,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618539Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5f4594d68511043c61fc46d8ec4fc836","type":"CBI_author","value":"Roche","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.8082,"y":475.19},"width":29.163025,"height":11.017679,"page":320}],"sectionNumber":3400,"textBefore":"transfection reagent (","textAfter":" Applied Science,","comments":null,"startOffset":3690,"endOffset":3695,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618539Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3e2304a5feb12f206e6715b6cbb42929","type":"CBI_author","value":"Promega, Madison, WI","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":372.7714,"y":715.58},"width":107.204834,"height":11.017679,"page":320}],"sectionNumber":3400,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2037,"endOffset":2057,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618539Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"769073e6c1be1ad8ac030853e0593de3","type":"CBI_author","value":"Turner","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.8202,"y":171.53998},"width":31.039856,"height":11.017679,"page":320}],"sectionNumber":3400,"textBefore":"Microplate Luminometer (","textAfter":" Biosystems/ Promega).","comments":null,"startOffset":5712,"endOffset":5718,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61854Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ec2dab293c5901313cc699be809f3b9","type":"PII","value":"10-18","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.64777,"y":627.02},"width":26.852203,"height":11.017679,"page":320}],"sectionNumber":3400,"textBefore":"with subattomole (<","textAfter":") sensitivities and","comments":null,"startOffset":2765,"endOffset":2770,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61854Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787057Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a361c1e2edad26c6a41d150f11158d13","type":"CBI_author","value":"Pro","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":361.03,"y":601.7},"width":16.224152,"height":11.017679,"page":321}],"sectionNumber":3400,"textBefore":"an Infinite M200 ","textAfter":" Microplate Luminometer","comments":null,"startOffset":7816,"endOffset":7819,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61854Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6bfc0b4ae0fc99ea4eb53fc96e8c5fb8","type":"CBI_author","value":"Monroe","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":472.16992,"y":614.42},"width":36.007843,"height":11.017679,"page":321}],"sectionNumber":3400,"textBefore":"200, Greiner Bio-One, ","textAfter":", NC) and","comments":null,"startOffset":7742,"endOffset":7748,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61854Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a99006973f7a9157035e15f992a6f2dd","type":"CBI_author","value":"Greiner","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":391.8596,"y":614.42},"width":34.649933,"height":11.017679,"page":321}],"sectionNumber":3400,"textBefore":"plate (LUMITRAC 200, ","textAfter":" Bio-One, Monroe,","comments":null,"startOffset":7725,"endOffset":7732,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61854Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7dadece3e5d5d977d4708cee4a1266de","type":"CBI_author","value":"San","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":349.44385,"y":500.51},"width":17.438568,"height":11.017679,"page":321}],"sectionNumber":3400,"textBefore":"Windows (GraphPad Software, ","textAfter":" Diego, CA,","comments":null,"startOffset":8439,"endOffset":8442,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618541Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"16e3a1af3498b827d996a4b8907f6dc2","type":"CBI_address","value":"Tecan, Mannedorf, Switzerland","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":501.82315,"y":601.7},"width":30.730682,"height":11.017679,"page":321},{"topLeft":{"x":64.104,"y":589.1},"width":111.00257,"height":11.017679,"page":321}],"sectionNumber":3400,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7844,"endOffset":7873,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618541Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d682550db6878dbb1f9af01b63c8870","type":"CBI_author","value":"Omiecinski C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":439.61945,"y":50.799988},"width":61.84143,"height":11.017679,"page":322}],"sectionNumber":3410,"textBefore":"three species. (","textAfter":", 2014) Guidelines:","comments":null,"startOffset":1993,"endOffset":2005,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618541Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5133c0bc98b9ea3587badee25d0d1654","type":"CBI_address","value":"CXR Biosciences Ltd","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.35712,"y":626.42},"width":98.604645,"height":11.017679,"page":323}],"sectionNumber":3410,"textBefore":"Test Facility (","textAfter":") were conducted","comments":null,"startOffset":2137,"endOffset":2156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618541Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"059635a57e54f005786c2e101503b765","type":"PII","value":"(500-7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.13474,"y":386.73},"width":46.835266,"height":11.017679,"page":323}],"sectionNumber":3411,"textBefore":"Administration of SYN545974 ","textAfter":" ppm) to","comments":null,"startOffset":970,"endOffset":979,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618542Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787058Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7871ca731cbed157f091697a8b58d547","type":"PII","value":"(500-7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":122.77054,"y":500.51},"width":46.849472,"height":11.017679,"page":323}],"sectionNumber":3411,"textBefore":"diet containing SYN545974 ","textAfter":" ppm) for","comments":null,"startOffset":223,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618542Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787059Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7ee891b7d296ebeda94f9de482d4fb52","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":224.64764,"y":613.82},"width":83.369446,"height":11.017679,"page":323}],"sectionNumber":3410,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2229,"endOffset":2246,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618542Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7311b2f70f9de2863cc7cf8593557726","type":"CBI_address","value":"CXR Biosciences, 2, James Lindsay Place, Dundee Technopole, Dundee, DD1 5JJ, Scotland, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":165.98,"y":703.34},"width":334.18695,"height":10.526819,"page":323},{"topLeft":{"x":133.82,"y":691.82},"width":55.30191,"height":10.526819,"page":323}],"sectionNumber":3408,"textBefore":"in the Mouse. ","textAfter":". Laboratory Report","comments":null,"startOffset":178,"endOffset":267,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618542Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"048cd83f6b9d05676c72ee7fa08511ce","type":"CBI_author","value":"Haines C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.58247,"y":726.38},"width":40.212524,"height":10.526819,"page":323}],"sectionNumber":3408,"textBefore":"Report: K-CA 5.5/09 ","textAfter":" (2012). SYN545974:","comments":null,"startOffset":20,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618542Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"060471a3895d5f41b9c125077f920d07","type":"hint_only","value":"test facility","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":195.04272,"y":626.42},"width":57.138412,"height":11.017679,"page":323}],"sectionNumber":3410,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2122,"endOffset":2135,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618543Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c14c80700e99e41e282bd356b888a15f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":459.97528,"y":691.82},"width":38.05127,"height":10.526819,"page":323}],"sectionNumber":3408,"textBefore":"January 2012. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":330,"endOffset":338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618543Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a774d567ba59dc7335d4da6ae6b0b6cd","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":372.2515,"y":702.86},"width":61.984955,"height":11.017679,"page":324}],"sectionNumber":3412,"textBefore":"treated under the ","textAfter":" study protocol,","comments":null,"startOffset":100,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618543Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d1c943d7830b3a077f3e6449e094b19a","type":"CBI_author","value":"Blank","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Treatment summary","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":127.1,"y":389.49},"width":22.527992,"height":10.0905,"page":324}],"sectionNumber":3418,"textBefore":null,"textAfter":" diet","comments":null,"startOffset":2,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618543Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a325014a850568e7a992bba3080f2f35","type":"PII","value":"(500-7000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nExperimental dates: Not reported","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":397.72168,"y":500.51},"width":47.21869,"height":11.017679,"page":324}],"sectionNumber":3413,"textBefore":"diet containing SYN545974 ","textAfter":" ppm for","comments":null,"startOffset":124,"endOffset":133,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618543Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78706Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0de1a201df1207016cbd4c38ca9f8b77","type":"PII","value":"4000 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-35: Hepatic Cyanide-Insensitive Palmitoyl CoA Oxidation (PCO) Dose-Response in Male\nand Female Mice Administered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.01,"y":186.89996},"width":19.044998,"height":10.018499,"page":325},{"topLeft":{"x":345.19,"y":187.14001},"width":10.053986,"height":10.0905,"page":325}],"sectionNumber":3435,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618544Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78706Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2622c3020c9d895370dd359c266eac25","type":"PII","value":"1500 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-35: Hepatic Cyanide-Insensitive Palmitoyl CoA Oxidation (PCO) Dose-Response in Male\nand Female Mice Administered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.01,"y":202.02002},"width":19.044998,"height":10.018499,"page":325},{"topLeft":{"x":347.47,"y":202.26001},"width":10.053986,"height":10.0905,"page":325}],"sectionNumber":3434,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618544Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78706Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3a39c09b2c4a833ff9930bf3b6eceef2","type":"PII","value":"7000 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-35: Hepatic Cyanide-Insensitive Palmitoyl CoA Oxidation (PCO) Dose-Response in Male\nand Female Mice Administered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.01,"y":171.77997},"width":19.044998,"height":10.018499,"page":325},{"topLeft":{"x":342.91,"y":172.02002},"width":10.053986,"height":10.0905,"page":325}],"sectionNumber":3436,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618544Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78706Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"94e4f5fc2a54cce06620c132cfbb3b4b","type":"PII","value":"36 19","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-37: Ethoxyresorufin-O-Deethylation Dose-Response in Male and Female Mice\nAdministered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":358.73798,"y":450.95},"width":10.053986,"height":10.0905,"page":326},{"topLeft":{"x":464.38,"y":450.95},"width":10.053986,"height":10.0905,"page":326}],"sectionNumber":3451,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618544Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78706Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"490401645d656ab1eea0cf6e84312ce6","type":"PII","value":"7000 34","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-37: Ethoxyresorufin-O-Deethylation Dose-Response in Male and Female Mice\nAdministered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.01,"y":420.59},"width":19.044998,"height":10.018499,"page":326},{"topLeft":{"x":347.47,"y":420.83},"width":10.053986,"height":10.0905,"page":326}],"sectionNumber":3453,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618544Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787061Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0235996e2016d056994cf0a851f66ac4","type":"PII","value":"500 32","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-38: Pentoxyresorufin-O-Depentylation Dose-Response in Male and Female Mice\nAdministered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":231.29,"y":215.34003},"width":14.619995,"height":10.018499,"page":326},{"topLeft":{"x":342.91,"y":215.58002},"width":10.053986,"height":10.0905,"page":326}],"sectionNumber":3458,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618545Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787061Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4526ab8dd8feefd8b4cf0ebe7e0ce699","type":"PII","value":"1500 18","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-37: Ethoxyresorufin-O-Deethylation Dose-Response in Male and Female Mice\nAdministered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.01,"y":450.71},"width":19.044998,"height":10.018499,"page":326},{"topLeft":{"x":347.47,"y":450.95},"width":10.053986,"height":10.0905,"page":326}],"sectionNumber":3451,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618545Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787061Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"833175e7b5bfccf06d55cd566032b729","type":"PII","value":"4000 21","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-37: Ethoxyresorufin-O-Deethylation Dose-Response in Male and Female Mice\nAdministered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.01,"y":435.59},"width":19.044998,"height":10.018499,"page":326},{"topLeft":{"x":347.47,"y":435.83},"width":10.053986,"height":10.0905,"page":326}],"sectionNumber":3452,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618545Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787061Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"daad87a75515d72cc1892430f1f18846","type":"PII","value":"4000 24","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-38: Pentoxyresorufin-O-Depentylation Dose-Response in Male and Female Mice\nAdministered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.01,"y":185.10004},"width":19.044998,"height":10.018499,"page":326},{"topLeft":{"x":342.91,"y":185.34003},"width":10.053986,"height":10.0905,"page":326}],"sectionNumber":3460,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618545Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787061Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"22d9337c952f1cc79e9a4afc33987417","type":"PII","value":"1500 25","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-38: Pentoxyresorufin-O-Depentylation Dose-Response in Male and Female Mice\nAdministered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.01,"y":200.22003},"width":19.044998,"height":10.018499,"page":326},{"topLeft":{"x":342.91,"y":200.46002},"width":10.053986,"height":10.0905,"page":326}],"sectionNumber":3459,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618546Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787062Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8216ca6b5407a07685ba2a7b0189e317","type":"PII","value":"500 18","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-37: Ethoxyresorufin-O-Deethylation Dose-Response in Male and Female Mice\nAdministered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":231.29,"y":465.83},"width":14.619995,"height":10.018499,"page":326},{"topLeft":{"x":345.19,"y":466.07},"width":10.053986,"height":10.0905,"page":326}],"sectionNumber":3450,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618546Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787062Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4cdfb8222434bf84e7b7403e9ae058cf","type":"PII","value":"7000 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-38: Pentoxyresorufin-O-Depentylation Dose-Response in Male and Female Mice\nAdministered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.01,"y":170.10004},"width":19.044998,"height":10.018499,"page":326},{"topLeft":{"x":342.91,"y":170.34003},"width":10.053986,"height":10.0905,"page":326}],"sectionNumber":3461,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618546Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787062Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2a1cb899efd257de0be931e644f4e3bb","type":"PII","value":"22 32","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-37: Ethoxyresorufin-O-Deethylation Dose-Response in Male and Female Mice\nAdministered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":358.73798,"y":435.83},"width":10.053986,"height":10.0905,"page":326},{"topLeft":{"x":462.1,"y":435.83},"width":10.053986,"height":10.0905,"page":326}],"sectionNumber":3452,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618546Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787062Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f446303cd4dd0dd6c2de168a2e4d44bd","type":"PII","value":"77 33","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-37: Ethoxyresorufin-O-Deethylation Dose-Response in Male and Female Mice\nAdministered SYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":358.73798,"y":420.83},"width":10.053986,"height":10.0905,"page":326},{"topLeft":{"x":459.82,"y":420.83},"width":10.053986,"height":10.0905,"page":326}],"sectionNumber":3453,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618546Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787062Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"28de775d0a610f619fb587f63d06f42c","type":"PII","value":"4000 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-40: Lauric Acid 12-Hydroxylation Dose-Response in Male and Female Mice Administered\nSYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.01,"y":435.35},"width":19.044998,"height":10.018499,"page":327},{"topLeft":{"x":342.91,"y":435.59},"width":10.053986,"height":10.0905,"page":327}],"sectionNumber":3477,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618547Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787062Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"32bc8e9f844c22bbc58c06032f91dd60","type":"PII","value":"7000 14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-40: Lauric Acid 12-Hydroxylation Dose-Response in Male and Female Mice Administered\nSYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.01,"y":420.23},"width":19.044998,"height":10.018499,"page":327},{"topLeft":{"x":342.91,"y":420.47},"width":10.053986,"height":10.0905,"page":327}],"sectionNumber":3478,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618547Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787062Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2e69fd018f6ad884c79f2aa94ba13daa","type":"PII","value":"1500 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-40: Lauric Acid 12-Hydroxylation Dose-Response in Male and Female Mice Administered\nSYN545974 for 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.01,"y":450.47},"width":19.044998,"height":10.018499,"page":327},{"topLeft":{"x":342.91,"y":450.71},"width":10.053986,"height":10.0905,"page":327}],"sectionNumber":3476,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618547Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787062Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0c86572b98f05b89d8f1c4e4b9b1b5d1","type":"PII","value":"16 33","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-43: Ethoxyresorufin-O-Deethylation in Male and Female Mice Administered SYN545974\nfor 3, 7 and 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.29797,"y":468.23},"width":10.053986,"height":10.0905,"page":328},{"topLeft":{"x":489.34,"y":468.23},"width":10.053986,"height":10.0905,"page":328}],"sectionNumber":3497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":47,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618547Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787063Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e0b93905b7fcbef7c59c22bb48621192","type":"PII","value":"7000 62","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-43: Ethoxyresorufin-O-Deethylation in Male and Female Mice Administered SYN545974\nfor 3, 7 and 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.34,"y":467.99},"width":19.044998,"height":10.018499,"page":328},{"topLeft":{"x":189.53,"y":468.23},"width":10.054001,"height":10.0905,"page":328}],"sectionNumber":3497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618548Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787063Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8301e3f3d2db0603ffa6c2b6748466ca","type":"PII","value":"77 85","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-43: Ethoxyresorufin-O-Deethylation in Male and Female Mice Administered SYN545974\nfor 3, 7 and 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":326.33798,"y":468.23},"width":10.053986,"height":10.0905,"page":328},{"topLeft":{"x":371.11,"y":468.23},"width":10.053986,"height":10.0905,"page":328}],"sectionNumber":3497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618548Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787063Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bf100e15b370657514993661958d2dc2","type":"PII","value":"7000 22","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-44: Pentoxyresorufin-O-Depentylation in Male and Female Mice Administered\nSYN545974 for 3, 7 and 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.34,"y":260.37},"width":19.044998,"height":10.018499,"page":328},{"topLeft":{"x":189.53,"y":260.61},"width":10.054001,"height":10.0905,"page":328}],"sectionNumber":3503,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618548Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787063Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"783a1433aebff90d24a3daf91111aad2","type":"CBI_author","value":"Haines C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"SYN545974 for 3, 7 and 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":459.80945,"y":388.89},"width":41.69345,"height":11.017679,"page":329}],"sectionNumber":3518,"textBefore":"inducing agents. (","textAfter":", 2012)","comments":null,"startOffset":804,"endOffset":812,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618548Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fcc2e42a601aa62e33dfb0dbe43b3795","type":"PII","value":"39 14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.5-46: Lauric Acid 12-Hydroxylation in Male and Female Mice Administered SYN545974 for\n3, 7 and 28 Days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.718,"y":480.83},"width":10.053986,"height":10.0905,"page":329},{"topLeft":{"x":310.49,"y":480.83},"width":10.053986,"height":10.0905,"page":329}],"sectionNumber":3516,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618548Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787063Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f36495f4f567c6011bf5da73ebf35c3c","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.6-1: Summary of reproductive and developmental toxicity of SYN545974","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":69.504,"y":91.02399},"width":30.114998,"height":10.0905,"page":331}],"sectionNumber":3529,"textBefore":"Penn L, (2015b) ","textAfter":" Report No.","comments":null,"startOffset":53,"endOffset":60,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618549Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac1bece22061e642dbf0b1dbfdf053d2","type":"CBI_author","value":"Penn L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6-1: Summary of reproductive and developmental toxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":103.5},"width":26.86599,"height":10.0905,"page":331}],"sectionNumber":3529,"textBefore":"in the rabbit ","textAfter":", (2015b) Sequani","comments":null,"startOffset":37,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61855Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"29c03f45ced1860f3110af7539421d5f","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.6.1. Generational studies","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":348.81},"width":82.60243,"height":11.017679,"page":332}],"sectionNumber":3534,"textBefore":null,"textAfter":null,"comments":null,"startOffset":175,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618551Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e2967a4be79c66abd538ee6b3951968b","type":"CBI_author","value":"Hackford","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.6. REPRODUCTIVE TOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.07214,"y":627.62},"width":42.477295,"height":11.017679,"page":332}],"sectionNumber":3531,"textBefore":"in rat (","textAfter":", 2015), sexual","comments":null,"startOffset":6326,"endOffset":6334,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618551Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ba544e97cbb39eedb6dd72af5396201","type":"CBI_author","value":"Hackford S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.6.1. Generational studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":207.1579,"y":449.87},"width":54.684387,"height":10.526819,"page":332}],"sectionNumber":3532,"textBefore":"Report: K-CA 5.6.1/01 ","textAfter":" (2015). SYN545974:","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618551Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"173ec38fb14cba7737f07e175b9dbc11","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.880005,"y":248.22003},"width":19.33744,"height":11.017679,"page":332}],"sectionNumber":3535,"textBefore":"of the Crl:WI(","textAfter":") strain were","comments":null,"startOffset":123,"endOffset":126,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618551Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7f84f3323264889390237b42f268539","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":248.22003},"width":15.0980835,"height":11.017679,"page":332}],"sectionNumber":3535,"textBefore":"rats of the ","textAfter":":WI(Han) strain were","comments":null,"startOffset":116,"endOffset":119,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618551Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25eb58ab65a901eb66345030bffd6eea","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.6.1. Generational studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":415.29},"width":38.051224,"height":10.526819,"page":332}],"sectionNumber":3532,"textBefore":"July 2015, Unpublished. ","textAfter":" File No.","comments":null,"startOffset":249,"endOffset":257,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618552Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a78b117c47d33c401e18532ce6e047f6","type":"CBI_address","value":"Sequani Limited, Bromyard Road, Ledbury, Herefordshire, HR8 1LH, UK.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.6.1. Generational studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":321.89468,"y":438.35},"width":190.57889,"height":10.526819,"page":332},{"topLeft":{"x":133.82,"y":426.83},"width":125.529755,"height":10.526819,"page":332}],"sectionNumber":3532,"textBefore":"in the Rat. ","textAfter":" Laboratory Report","comments":null,"startOffset":123,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618552Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"66f29d6b3e647f6b58614fe6398f8715","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":551.87},"width":28.467995,"height":10.018499,"page":334}],"sectionNumber":3538,"textBefore":null,"textAfter":null,"comments":null,"startOffset":94,"endOffset":101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618552Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4948995852f7e5af83686ef72083f543","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":241.83199,"y":436.79},"width":15.94902,"height":10.0905,"page":334}],"sectionNumber":3541,"textBefore":"Crl:WI(","textAfter":null,"comments":null,"startOffset":14,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618553Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"971d2c39c9d19d72342f445d90629ec1","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.41,"y":436.79},"width":12.501999,"height":10.0905,"page":334}],"sectionNumber":3541,"textBefore":null,"textAfter":":WI(Han","comments":null,"startOffset":7,"endOffset":10,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618553Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ab635cf262d6a2be265a048b4ccffda","type":"CBI_address","value":"Charles River (UK) Limited, Margate, Kent, CT9 4LT, England","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":143.52959,"y":487.43},"width":283.1162,"height":11.017679,"page":334}],"sectionNumber":3550,"textBefore":"SDS, supplied by ","textAfter":null,"comments":null,"startOffset":149,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618553Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c8d817b1a2b92bbb8df725a6c54c63e","type":"PII","value":"225-248","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":185.06,"y":575.03},"width":31.080994,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":"25-48 ","textAfter":null,"comments":null,"startOffset":24,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618553Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787066Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"39d33c1848d0988c6eec0fed49467efa","type":"PII","value":"145-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.1,"y":589.46},"width":31.050995,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":null,"textAfter":" 345-368","comments":null,"startOffset":91,"endOffset":98,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618553Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787066Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dde9ca071f141692395291d36e9b0905","type":"PII","value":"201-224","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.22,"y":575.03},"width":31.050995,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":"1-24 ","textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618554Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787067Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2f678e3104ce5a0b27b63c7761a4012f","type":"PII","value":"273-296","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":288.65,"y":575.03},"width":31.050995,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":"73-96 ","textAfter":null,"comments":null,"startOffset":52,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618554Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787067Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7ac0e0c527be16fe9a56b24b3c8cde65","type":"PII","value":"249-272","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":236.81,"y":575.03},"width":31.050995,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":"49-72 ","textAfter":null,"comments":null,"startOffset":38,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618554Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787067Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"340439fc972e4f8fd906eaf8f4415959","type":"PII","value":"121-144","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":392.23,"y":589.46},"width":31.050995,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":null,"textAfter":" 321-344","comments":null,"startOffset":75,"endOffset":82,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618554Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787067Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0b20678c4f487b976c70d81ab2e6074e","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.51,"y":604.22},"width":14.619995,"height":10.018499,"page":335},{"topLeft":{"x":452.26,"y":604.22},"width":14.619995,"height":10.018499,"page":335},{"topLeft":{"x":499.06,"y":604.22},"width":19.044983,"height":10.018499,"page":335}],"sectionNumber":3554,"textBefore":null,"textAfter":null,"comments":null,"startOffset":28,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618554Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787067Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"390d61e8507c03d61712ebe25f21ae51","type":"PII","value":"169-192","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":493.06,"y":589.46},"width":31.051025,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":null,"textAfter":" 369-39","comments":null,"startOffset":107,"endOffset":114,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618554Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787067Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ad902fb7ced1deadbf4431c026208eb4","type":"CBI_address","value":"Charles River (UK) Limited, Margate, Kent, CT9 4LT, England.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Dose selection rationale:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":220.55186,"y":370.53},"width":285.9757,"height":11.017679,"page":335}],"sectionNumber":3558,"textBefore":"SDS, supplied by ","textAfter":" On an","comments":null,"startOffset":922,"endOffset":982,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618555Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8b28278a74b0e0bf1fb6c8f5cad54871","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dose selection rationale:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":509.75},"width":19.337433,"height":11.017679,"page":335}],"sectionNumber":3558,"textBefore":"with Crl:WI (","textAfter":") rats conducted","comments":null,"startOffset":127,"endOffset":130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618555Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e18543dba45cef5dda210da7034cb091","type":"PII","value":"73-96","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":293.09,"y":589.46},"width":22.059998,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":null,"textAfter":" 273-296","comments":null,"startOffset":46,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618555Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787068Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6545010265c2e6e306e0ca70d027476f","type":"PII","value":"321-344","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":392.23,"y":575.03},"width":31.050995,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":"121-144 ","textAfter":null,"comments":null,"startOffset":83,"endOffset":90,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618555Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787068Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5a81b80e95717858267f61c01a8b940c","type":"PII","value":"345-368","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.1,"y":575.03},"width":31.050995,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":"145-168 ","textAfter":null,"comments":null,"startOffset":99,"endOffset":106,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618555Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787068Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"619103e2612f25477f35b7fc54200a46","type":"PII","value":"49-72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":241.37,"y":589.46},"width":22.059998,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":null,"textAfter":" 249-272","comments":null,"startOffset":32,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618556Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787068Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e96e250b63f61275ea350f3636b2e399","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dose selection rationale:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":256.64996},"width":23.024803,"height":11.017679,"page":335}],"sectionNumber":3558,"textBefore":"at room temperature. ","textAfter":" to the","comments":null,"startOffset":1442,"endOffset":1447,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618556Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c73c57f4722cfb7a300d40498924617d","type":"PII","value":"97-120","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.79,"y":589.46},"width":26.490997,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":null,"textAfter":" 297-320","comments":null,"startOffset":60,"endOffset":66,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618556Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787068Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3758fe7bc99560032b5da52b704ce1ce","type":"PII","value":"297-320","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":340.51,"y":575.03},"width":31.050995,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":"97-120 ","textAfter":null,"comments":null,"startOffset":67,"endOffset":74,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618556Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787069Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"88503d9cfdaa35db569a84e50ea3d1b9","type":"PII","value":"150 750 4500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.25,"y":604.22},"width":14.619995,"height":10.018499,"page":335},{"topLeft":{"x":245.09,"y":604.22},"width":14.619995,"height":10.018499,"page":335},{"topLeft":{"x":294.65,"y":604.22},"width":19.044983,"height":10.018499,"page":335}],"sectionNumber":3554,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618557Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787069Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3c61649a31e984b408857d58aea4820c","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Dose selection rationale:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":500.47986,"y":522.35},"width":14.987671,"height":11.017679,"page":335}],"sectionNumber":3558,"textBefore":"with SYN545974 with ","textAfter":":WI (Han) rats","comments":null,"startOffset":119,"endOffset":122,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618557Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"71bd230a3f254b058154cdf0e8cc3f96","type":"PII","value":"25-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.53,"y":589.46},"width":22.059998,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":null,"textAfter":" 225-248","comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618557Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787069Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"50377d99ceecd99279c724f3548890f2","type":"PII","value":"369-392","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":493.06,"y":575.03},"width":31.051025,"height":10.0905,"page":335}],"sectionNumber":3555,"textBefore":null,"textAfter":null,"comments":null,"startOffset":115,"endOffset":122,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618557Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787069Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d49fbdb4fddce2359c1e26cb2984047e","type":"CBI_author","value":"Freeman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Data analyses:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":664.94},"width":39.386063,"height":11.017679,"page":338}],"sectionNumber":3564,"textBefore":"arcsine transformation (","textAfter":" and Tukey,","comments":null,"startOffset":1892,"endOffset":1899,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618558Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3e25a8c94b15da4dd278798ff33ed31f","type":"PII","value":"150 750 4500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-2: Intergroup comparison of group mean food consumption (g/animal/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":251.33,"y":248.10004},"width":14.62001,"height":10.018499,"page":340},{"topLeft":{"x":292.73,"y":248.10004},"width":14.619995,"height":10.018499,"page":340},{"topLeft":{"x":331.87,"y":248.10004},"width":19.044983,"height":10.018499,"page":340}],"sectionNumber":3572,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618558Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78707Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a8e1e8f8441f73ff86636179012fa06c","type":"PII","value":"150 750 4500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-1: Intergroup comparison of group mean body weight gains (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":260.57,"y":642.14},"width":14.619995,"height":10.018499,"page":340},{"topLeft":{"x":301.97,"y":642.14},"width":14.619995,"height":10.018499,"page":340},{"topLeft":{"x":341.23,"y":642.14},"width":19.044983,"height":10.018499,"page":340}],"sectionNumber":3567,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618559Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78707Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a76b5411c6dad45cd85f75c8f01ed8cf","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-2: Intergroup comparison of group mean food consumption (g/animal/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.07,"y":248.10004},"width":14.619995,"height":10.018499,"page":340},{"topLeft":{"x":458.38,"y":248.10004},"width":14.619995,"height":10.018499,"page":340},{"topLeft":{"x":494.02,"y":248.10004},"width":19.044952,"height":10.018499,"page":340}],"sectionNumber":3572,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618559Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78707Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3a6141a6e45d62f69f3fb8da00375b92","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-1: Intergroup comparison of group mean body weight gains (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.31,"y":642.14},"width":14.619995,"height":10.018499,"page":340},{"topLeft":{"x":467.86,"y":642.14},"width":14.619995,"height":10.018499,"page":340},{"topLeft":{"x":504.34,"y":642.14},"width":19.045013,"height":10.018499,"page":340}],"sectionNumber":3567,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61856Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787071Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"019a0c87f0c41cc69cd6eb120a1293ee","type":"PII","value":"4500 276","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-3: P Generation mean dose received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":83.064,"y":580.19},"width":19.044998,"height":10.0905,"page":341},{"topLeft":{"x":164.06,"y":580.19},"width":14.608002,"height":10.0905,"page":341}],"sectionNumber":3585,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61856Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787071Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"46aef269afedeb5c2ad88d1ea5dc0efb","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-6: Historical Control Data (2008 to 2016) - P Generation Oestrous cycle length and periodicity","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":305.69,"y":188.70001},"width":14.619995,"height":10.018499,"page":341},{"topLeft":{"x":389.71,"y":188.70001},"width":14.619995,"height":10.018499,"page":341},{"topLeft":{"x":471.58,"y":188.70001},"width":19.044983,"height":10.018499,"page":341}],"sectionNumber":3600,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61856Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787071Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe9e55d0509c8f6c4faf312924b347fa","type":"PII","value":"4500 363","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-4: F1 Generation mean dose received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":83.544,"y":391.89},"width":19.044998,"height":10.0905,"page":341},{"topLeft":{"x":165.86,"y":391.89},"width":14.608002,"height":10.0905,"page":341}],"sectionNumber":3596,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61856Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787072Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9b1895d5d552832a28634699dadc63a2","type":"PII","value":"1500 116","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-3: P Generation mean dose received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":83.064,"y":595.7},"width":19.044998,"height":10.0905,"page":341},{"topLeft":{"x":265.13,"y":595.7},"width":14.607971,"height":10.0905,"page":341}],"sectionNumber":3584,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618561Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787072Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"113d083c7c0f3881d9af38625be81061","type":"PII","value":"750 59","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-4: F1 Generation mean dose received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":85.824,"y":422.87},"width":14.619995,"height":10.0905,"page":341},{"topLeft":{"x":168.14,"y":422.87},"width":10.054001,"height":10.0905,"page":341}],"sectionNumber":3594,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618561Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787072Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fccadc41352ecf7bd8086f1b6b5e400c","type":"PII","value":"750 46","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-3: P Generation mean dose received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":85.224,"y":611.18},"width":14.619995,"height":10.0905,"page":341},{"topLeft":{"x":166.34,"y":611.18},"width":10.054001,"height":10.0905,"page":341}],"sectionNumber":3583,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618561Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787072Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2c4ecd4c59d09da90d1319f702b59da6","type":"PII","value":"150 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-4: F1 Generation mean dose received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":85.824,"y":453.83},"width":14.619995,"height":10.0905,"page":341},{"topLeft":{"x":168.14,"y":453.83},"width":10.054001,"height":10.0905,"page":341}],"sectionNumber":3592,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618561Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787072Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1b593cc540cd3b07ee1830ae665703dc","type":"PII","value":"450 36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-3: P Generation mean dose received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":85.224,"y":626.66},"width":14.619995,"height":10.0905,"page":341},{"topLeft":{"x":267.41,"y":626.66},"width":10.053986,"height":10.0905,"page":341}],"sectionNumber":3582,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618561Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787073Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2df26675b0c838856cdc853d5e5cceb4","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Reproductive performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":305.69,"y":575.99},"width":14.619995,"height":10.018499,"page":342},{"topLeft":{"x":389.71,"y":575.99},"width":14.619995,"height":10.018499,"page":342},{"topLeft":{"x":471.58,"y":575.99},"width":19.044983,"height":10.018499,"page":342}],"sectionNumber":3620,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618562Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787073Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eb9969dbe6c1c20bfa9f9b4cc19ba566","type":"PII","value":"30 25","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Reproductive performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.13,"y":701.54},"width":10.059998,"height":10.0905,"page":342},{"topLeft":{"x":320.71,"y":701.54},"width":10.059998,"height":10.0905,"page":342}],"sectionNumber":3614,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":10,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618562Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787073Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"54941478a3bd7b46fabd81d12c116162","type":"PII","value":"30 25","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Reproductive performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.13,"y":662.9},"width":10.059998,"height":10.0905,"page":342},{"topLeft":{"x":320.71,"y":662.9},"width":10.059998,"height":10.0905,"page":342}],"sectionNumber":3617,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618562Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787073Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"30bc2bcb319a808268589bc91d91094f","type":"PII","value":"150 750 4500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-8: P Generation reproductive performance","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":335.47,"y":705.5},"width":14.619995,"height":10.018499,"page":343},{"topLeft":{"x":407.35,"y":705.5},"width":14.619995,"height":10.018499,"page":343},{"topLeft":{"x":483.82,"y":705.5},"width":19.044983,"height":10.018499,"page":343}],"sectionNumber":3630,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618562Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787073Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"682554b85a342295c927e1abd5de2785","type":"PII","value":"150 750 4500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-9: F1 Generation reproductive performance","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":327.43,"y":296.73004},"width":14.619995,"height":10.018499,"page":343},{"topLeft":{"x":400.39,"y":296.73004},"width":14.619995,"height":10.018499,"page":343},{"topLeft":{"x":474.34,"y":296.73004},"width":19.044983,"height":10.018499,"page":343}],"sectionNumber":3652,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618563Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787074Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"df85d574fc2d32e8fddd31697411590b","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-9: F1 Generation reproductive performance","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":327.55,"y":193.5},"width":14.619995,"height":10.018499,"page":343},{"topLeft":{"x":400.51,"y":193.5},"width":14.619995,"height":10.018499,"page":343},{"topLeft":{"x":474.94,"y":193.5},"width":19.044983,"height":10.018499,"page":343}],"sectionNumber":3660,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618563Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787074Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"43642f586b06ad373b5023b261457906","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-8: P Generation reproductive performance","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":335.47,"y":586.67},"width":14.619995,"height":10.018499,"page":343},{"topLeft":{"x":407.35,"y":586.67},"width":14.619995,"height":10.018499,"page":343},{"topLeft":{"x":483.82,"y":586.67},"width":19.044983,"height":10.018499,"page":343}],"sectionNumber":3638,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618563Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787074Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e1ea16eaa815582db743d1b9e5152f8b","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"F1 animals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":351.58325,"y":68.44},"width":14.257935,"height":9.65418,"page":344}],"sectionNumber":3688,"textBefore":"studies on CR ","textAfter":" Wistar rat:","comments":null,"startOffset":390,"endOffset":393,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618563Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e420efad536b97a72519fbfde41c9b80","type":"CBI_author","value":"Hackford","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"F1 animals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":154.43864,"y":49.599976},"width":31.158066,"height":9.65418,"page":344}],"sectionNumber":3688,"textBefore":"report K-CA 5.6.1/01 ","textAfter":" 2015). microscopic","comments":null,"startOffset":614,"endOffset":622,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618563Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"81ef0a7a578dd6688125d57e74b03d74","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-10: Intergroup comparison of selected organ weights in parental animals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.11,"y":347.13},"width":14.619995,"height":10.018499,"page":344},{"topLeft":{"x":421.03,"y":347.13},"width":14.619995,"height":10.018499,"page":344},{"topLeft":{"x":463.42,"y":347.13},"width":19.044983,"height":10.018499,"page":344}],"sectionNumber":3674,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618564Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787074Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"090656dfb156a1a62ae5fc981556f7a2","type":"CBI_address","value":"Sequani Limited","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"F1 animals","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":70.224,"y":68.44},"width":54.417755,"height":9.65418,"page":344}],"sectionNumber":3688,"textBefore":"associated with 5 ","textAfter":" background control","comments":null,"startOffset":310,"endOffset":325,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618564Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c08fd994ee3c863eed9c55008f43f4cb","type":"PII","value":"250 750 4500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-10: Intergroup comparison of selected organ weights in parental animals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":204.29,"y":347.13},"width":14.619995,"height":10.018499,"page":344},{"topLeft":{"x":242.09,"y":347.13},"width":14.619995,"height":10.018499,"page":344},{"topLeft":{"x":281.81,"y":347.13},"width":19.044983,"height":10.018499,"page":344}],"sectionNumber":3674,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618564Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787075Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2049a8e52c2a9f17887e1a30457cc277","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-11: Intergroup comparison of selected organ weights in F1 animals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.11,"y":471.35},"width":14.619995,"height":10.018499,"page":345},{"topLeft":{"x":421.03,"y":471.35},"width":14.619995,"height":10.018499,"page":345},{"topLeft":{"x":463.42,"y":471.35},"width":19.044983,"height":10.018499,"page":345}],"sectionNumber":3682,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618564Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787075Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e182c0652dc773cf290301f8162c16ea","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"F1 animals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":351.58325,"y":68.44},"width":14.257935,"height":9.65418,"page":345}],"sectionNumber":3688,"textBefore":"studies on CR ","textAfter":" Wistar rat:","comments":null,"startOffset":2831,"endOffset":2834,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618565Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e636f3d9647ee54f38cc2a45db540ac","type":"PII","value":"02 13","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-11: Intergroup comparison of selected organ weights in F1 animals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.56201,"y":436.91},"width":9.936996,"height":10.0905,"page":345},{"topLeft":{"x":238.73,"y":457.55},"width":10.054001,"height":10.0905,"page":345}],"sectionNumber":3683,"textBefore":null,"textAfter":null,"comments":null,"startOffset":48,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618565Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787075Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"29a3c54f1585d9a531eb05d071afe7a4","type":"PII","value":"250 750 4500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-11: Intergroup comparison of selected organ weights in F1 animals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":204.29,"y":471.35},"width":14.619995,"height":10.018499,"page":345},{"topLeft":{"x":242.09,"y":471.35},"width":14.619995,"height":10.018499,"page":345},{"topLeft":{"x":281.81,"y":471.35},"width":19.044983,"height":10.018499,"page":345}],"sectionNumber":3682,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618565Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787075Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8c3408fd994eda31b5bdd1019f13bb39","type":"CBI_address","value":"Sequani Limited","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"F1 animals","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":70.224,"y":68.44},"width":54.417755,"height":9.65418,"page":345}],"sectionNumber":3688,"textBefore":"1500 ppm. 6 ","textAfter":" background control","comments":null,"startOffset":2751,"endOffset":2766,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618565Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1e15ad56072af4561372cbd81532bfee","type":"CBI_author","value":"Hackford","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"F1 animals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":154.39484,"y":49.599976},"width":31.158066,"height":9.65418,"page":345}],"sectionNumber":3688,"textBefore":"report K-CA 5.6.1/01 ","textAfter":" 2015).","comments":null,"startOffset":3055,"endOffset":3063,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618565Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e5e9158c0d6109c681ab7335e6f3def2","type":"PII","value":"150 750 4500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-12: Histopathology findings in the liver in P-Generation animals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":288.77,"y":645.5},"width":14.619995,"height":10.018499,"page":346},{"topLeft":{"x":327.43,"y":645.5},"width":14.619995,"height":10.018499,"page":346},{"topLeft":{"x":363.79,"y":645.5},"width":19.044983,"height":10.018499,"page":346}],"sectionNumber":3691,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618566Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787075Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"18bc4cf8431682407b7def3e0289f46a","type":"PII","value":"150 750 4500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-13: Histopathology findings in the thyroid of P-Generation males","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.35,"y":396.69},"width":14.619995,"height":10.018499,"page":346},{"topLeft":{"x":456.46,"y":396.69},"width":14.619995,"height":10.018499,"page":346},{"topLeft":{"x":500.62,"y":396.69},"width":19.044983,"height":10.018499,"page":346}],"sectionNumber":3702,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618566Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787076Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"861c606c7619a37c4a20e1c402571a6b","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-12: Histopathology findings in the liver in P-Generation animals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":436.15,"y":645.5},"width":14.619995,"height":10.018499,"page":346},{"topLeft":{"x":472.42,"y":645.5},"width":14.619995,"height":10.018499,"page":346},{"topLeft":{"x":506.02,"y":645.5},"width":19.045013,"height":10.018499,"page":346}],"sectionNumber":3691,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618566Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787076Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"26313ee18316d26029add6d4db51f145","type":"PII","value":"150 750 4500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-14: Histopathology findings in the liver of F1-Generation males","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.35,"y":144.29999},"width":14.619995,"height":10.018499,"page":346},{"topLeft":{"x":456.46,"y":144.29999},"width":14.619995,"height":10.018499,"page":346},{"topLeft":{"x":500.62,"y":144.29999},"width":19.044983,"height":10.018499,"page":346}],"sectionNumber":3711,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618566Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787076Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"65d01b633e5d2a6512410d556cbbb0ab","type":"PII","value":"150 750 4500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-15: Histopathology findings in the thyroid of F1-Generation males","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.35,"y":639.5},"width":14.619995,"height":10.018499,"page":347},{"topLeft":{"x":456.46,"y":639.5},"width":14.619995,"height":10.018499,"page":347},{"topLeft":{"x":500.62,"y":639.5},"width":19.044983,"height":10.018499,"page":347}],"sectionNumber":3720,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618567Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787076Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0a4e2667cfd8d4fb5b0b1a24a9b3d729","type":"PII","value":"239 222 238 212","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-16: Litter parameters for F1 and F2","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":267.53,"y":498.59},"width":14.619995,"height":10.0905,"page":348},{"topLeft":{"x":340.27,"y":498.59},"width":14.619995,"height":10.0905,"page":348},{"topLeft":{"x":413.23,"y":498.59},"width":14.619995,"height":10.0905,"page":348},{"topLeft":{"x":487.06,"y":498.59},"width":14.619995,"height":10.0905,"page":348}],"sectionNumber":3748,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618567Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787076Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cb9c81c88877977458cccbc95b0253cc","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-16: Litter parameters for F1 and F2","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":340.27,"y":726.26},"width":14.619995,"height":10.018499,"page":348},{"topLeft":{"x":413.23,"y":726.26},"width":14.619995,"height":10.018499,"page":348},{"topLeft":{"x":484.9,"y":726.26},"width":19.044983,"height":10.018499,"page":348}],"sectionNumber":3727,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618567Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787076Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4d49eca192fb595c73cb83f917d92da2","type":"PII","value":"283 276 271 262","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-16: Litter parameters for F1 and F2","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":267.53,"y":693.86},"width":14.619995,"height":10.0905,"page":348},{"topLeft":{"x":340.27,"y":693.86},"width":14.619995,"height":10.0905,"page":348},{"topLeft":{"x":413.23,"y":693.86},"width":14.619995,"height":10.0905,"page":348},{"topLeft":{"x":487.06,"y":693.86},"width":14.619995,"height":10.0905,"page":348}],"sectionNumber":3730,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618567Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787076Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e71802a8e038d6b5f329dbaf9fce4d21","type":"hint_only","value":"study director","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Body weight (Table 6.6.1-17):","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":288.17,"y":239.22003},"width":62.106415,"height":11.017679,"page":348}],"sectionNumber":3786,"textBefore":null,"textAfter":null,"comments":null,"startOffset":284,"endOffset":298,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618567Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"807d38186c3db3c8c9e66924d160980b","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-17: F1 and F2 intergroup comparison of body weight (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":182.3,"y":725.54},"width":14.619995,"height":10.018499,"page":349},{"topLeft":{"x":235.85,"y":725.54},"width":14.619995,"height":10.018499,"page":349},{"topLeft":{"x":287.21,"y":725.54},"width":19.044983,"height":10.018499,"page":349}],"sectionNumber":3767,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618568Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787077Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4df074b643a66cfbfe72f5731652a70d","type":"hint_only","value":"study director","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Sexual maturation:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":146.40224,"y":211.02002},"width":62.338226,"height":11.017679,"page":349}],"sectionNumber":3825,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1062,"endOffset":1076,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618568Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be30181a839691803e72707376a62bfe","type":"CBI_author","value":"Edwards D.F.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sexual maturation:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":68.664,"y":49.599976},"width":45.083313,"height":9.65418,"page":349}],"sectionNumber":3825,"textBefore":"7 ). 7 ","textAfter":", and Kay","comments":null,"startOffset":2064,"endOffset":2076,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618568Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3193e2062bd5ed829cbda31d7cd65e61","type":"CBI_author","value":"Kay R.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sexual maturation:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":130.38707,"y":49.599976},"width":23.632614,"height":9.65418,"page":349}],"sectionNumber":3825,"textBefore":"Edwards D.F., and ","textAfter":" (1985): Weight","comments":null,"startOffset":2082,"endOffset":2088,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618568Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"490c51c54d783b7717ec622eec77cf26","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-17: F1 and F2 intergroup comparison of body weight (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.55,"y":725.54},"width":14.619995,"height":10.018499,"page":349},{"topLeft":{"x":450.34,"y":725.54},"width":14.619995,"height":10.018499,"page":349},{"topLeft":{"x":498.58,"y":725.54},"width":19.045013,"height":10.018499,"page":349}],"sectionNumber":3767,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618568Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787077Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"102dcb67f6b72562ecc391fe923fdc52","type":"CBI_author","value":"Kay","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sexual maturation:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":165.82652,"y":71.79999},"width":19.44786,"height":11.017679,"page":349}],"sectionNumber":3825,"textBefore":"opening (Edwards and ","textAfter":", 1985 7","comments":null,"startOffset":2047,"endOffset":2050,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618569Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"430e6bc38aa285f03064d444822b8fe9","type":"CBI_author","value":"Edwards","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sexual maturation:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":106.078064,"y":71.79999},"width":39.485428,"height":11.017679,"page":349}],"sectionNumber":3825,"textBefore":"vaginal opening (","textAfter":" and Kay,","comments":null,"startOffset":2035,"endOffset":2042,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618569Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04b1436e5edf825b161c551ab0fb7ce7","type":"PII","value":"207 150","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-20: Historical Control Data (2008 to 2014) - F1 generation pups sexual maturation and body\nweights (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.93,"y":187.26001},"width":43.307983,"height":10.0905,"page":350}],"sectionNumber":3814,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618569Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787078Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b5d6035a9dff1ff34440af2f4cfe20d7","type":"PII","value":"222 153","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-20: Historical Control Data (2008 to 2014) - F1 generation pups sexual maturation and body\nweights (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.9,"y":187.26001},"width":43.287964,"height":10.0905,"page":350}],"sectionNumber":3814,"textBefore":null,"textAfter":null,"comments":null,"startOffset":64,"endOffset":71,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618569Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787078Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c372e7141aad53596263350b12083ec6","type":"PII","value":"150 750 4500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-20: Historical Control Data (2008 to 2014) - F1 generation pups sexual maturation and body\nweights (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":327.55,"y":558.59},"width":14.619995,"height":10.018499,"page":350},{"topLeft":{"x":400.51,"y":558.59},"width":14.619995,"height":10.018499,"page":350},{"topLeft":{"x":474.22,"y":558.59},"width":19.044983,"height":10.018499,"page":350}],"sectionNumber":3789,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618569Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787078Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"36b137806b9f72a54148cf14804e2692","type":"PII","value":"150 450 1500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-20: Historical Control Data (2008 to 2014) - F1 generation pups sexual maturation and body\nweights (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":327.55,"y":442.91},"width":14.619995,"height":10.018499,"page":350},{"topLeft":{"x":400.51,"y":442.91},"width":14.619995,"height":10.018499,"page":350},{"topLeft":{"x":474.22,"y":442.91},"width":19.044983,"height":10.018499,"page":350}],"sectionNumber":3798,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61857Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787078Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1fd41e3e4183f535821fd9f3e4aa8f68","type":"PII","value":"213 149","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-20: Historical Control Data (2008 to 2014) - F1 generation pups sexual maturation and body\nweights (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.63,"y":187.26001},"width":43.287964,"height":10.0905,"page":350}],"sectionNumber":3814,"textBefore":null,"textAfter":null,"comments":null,"startOffset":44,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61857Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787078Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"540a0d4de6f1c7f70420c162c07e07f5","type":"PII","value":"222 152","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-20: Historical Control Data (2008 to 2014) - F1 generation pups sexual maturation and body\nweights (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":253.37,"y":187.26001},"width":43.16797,"height":10.0905,"page":350}],"sectionNumber":3814,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61857Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787079Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"74bd73321ea499e1be4fe3b335e0f5d9","type":"PII","value":"200 132","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.1-20: Historical Control Data (2008 to 2014) - F1 generation pups sexual maturation and body\nweights (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.31,"y":187.26001},"width":43.16797,"height":10.0905,"page":350}],"sectionNumber":3814,"textBefore":null,"textAfter":null,"comments":null,"startOffset":54,"endOffset":61,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61857Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787079Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"669abec10cc8b83696d5820c7dc62d5c","type":"PII","value":"376 50 33 12 55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.69,"y":532.07},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":532.07},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":532.07},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":532.07},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":502.3,"y":532.07},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3835,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618571Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787079Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d15cf00dd1de241447845efc3dcb65ab","type":"PII","value":"124 56","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":300.77,"y":752.9},"width":14.490997,"height":10.0905,"page":351},{"topLeft":{"x":333.91,"y":752.9},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3856,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618571Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787079Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"41a362d72777648d2d68e62835f177f1","type":"PII","value":"44 372 51 29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":575.39},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":302.69,"y":575.39},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":575.39},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":575.39},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3831,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618571Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78708Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4d1631be12eb58f91e306657bffd5cbd","type":"PII","value":"317 49 29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":390.93},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":390.93},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":390.93},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3848,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618571Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78708Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fdab41bd0d879dc22bd22b05f693a260","type":"PII","value":"391 44 32 11 61","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.69,"y":369.33},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":369.33},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":369.33},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":369.33},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":502.3,"y":369.33},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3850,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618571Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78708Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"38c45c4afb06b1483499318b35f87e8e","type":"PII","value":"34 387 44 37 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":412.65},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":302.69,"y":412.65},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":412.65},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":412.65},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":412.65},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3846,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618572Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78708Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7742ed71dbe864efedbfa1083f1442f4","type":"PII","value":"318 60 27","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":380.13},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":380.13},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":380.13},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3849,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618572Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78708Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"982efdb23328401e1fbca15e9b44296b","type":"PII","value":"29 373 51 29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":564.59},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":302.69,"y":564.59},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":564.59},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":564.59},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3832,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618572Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787081Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"937d8a1d7305f8e9c4e6c655f424ed9e","type":"PII","value":"115 78","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":350.47,"y":752.9},"width":14.490997,"height":10.0905,"page":351},{"topLeft":{"x":383.59,"y":752.9},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3856,"textBefore":null,"textAfter":null,"comments":null,"startOffset":36,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618572Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787081Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f8108b0f8a26bd32ef326e2222d73446","type":"PII","value":"303 52 33 12 72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":542.87},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":542.87},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":542.87},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":225.29,"y":542.87},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":269.93,"y":542.87},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3834,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618572Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787081Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"54721eb957c38dddb126fed54aac9192","type":"PII","value":"114 77","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":251.09,"y":752.9},"width":14.490967,"height":10.0905,"page":351},{"topLeft":{"x":284.21,"y":752.9},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3856,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618573Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787081Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"af10b51eec27913e595af1605adc9c6a","type":"PII","value":"305 49 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":521.15},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":521.15},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":521.15},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3836,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618573Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787082Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"18582a17ba45e037b8e2c1fbd2f97fb4","type":"PII","value":"35 388 48 29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":401.85},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":302.69,"y":401.85},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":401.85},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":401.85},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3847,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618573Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787082Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a7893dcc221905471009c9913cca1841","type":"PII","value":"304 42 33 12 58","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":532.07},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":532.07},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":532.07},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":225.29,"y":532.07},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":269.93,"y":532.07},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3835,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618573Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787082Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2efb8820f1034ef661708297d8207f94","type":"PII","value":"37 389 48 38 17","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":390.93},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":302.69,"y":390.93},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":390.93},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":390.93},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":390.93},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3848,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618573Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787082Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4e1c548b6a8d170c06bfeee70557e86a","type":"PII","value":"306 54 29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":510.34998},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":510.34998},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":510.34998},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3837,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618573Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787082Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"acefd72bb970f7a7686756c334b5c903","type":"PII","value":"320 51 27","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":358.41},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":358.41},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":358.41},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3851,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618573Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787082Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"079e0e8ae94809e14b12cad656ff5e28","type":"PII","value":"319 54 31 10 57","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":369.33},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":369.33},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":369.33},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":225.29,"y":369.33},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":269.93,"y":369.33},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3850,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618573Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787083Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0a349d3755b514d7a17d6bd064e9d4e6","type":"PII","value":"379 51 33 12 56","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.69,"y":499.55},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":499.55},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":499.55},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":499.55},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":502.3,"y":499.55},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3838,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618574Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787083Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"790a68c2fff103b8e26b647f0be7294a","type":"PII","value":"307 44 33 12 49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":499.55},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":499.55},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":499.55},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":225.29,"y":499.55},"width":10.060013,"height":10.0905,"page":351},{"topLeft":{"x":269.93,"y":499.55},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3838,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618574Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787083Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a702434646c4e9b62aced69ad64d2b9c","type":"PII","value":"380 36 36 15 64","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.69,"y":488.63},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":488.63},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":488.63},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":488.63},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":502.3,"y":488.63},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3839,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618574Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787083Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6baa96d70b9c27e7990b28db8ba8d292","type":"PII","value":"29 390 48 35 14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":380.13},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":302.69,"y":380.13},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":380.13},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":380.13},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":380.13},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3849,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618574Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787083Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"50fe70dc2e9786a956bf3cad102507e2","type":"PII","value":"308 55 33 12 60","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":488.63},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":488.63},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":488.63},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":225.29,"y":488.63},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":269.93,"y":488.63},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3839,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618575Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787083Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f38311d80d22e97aed2f5857d97c1685","type":"PII","value":"381 46 35 14 60","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.69,"y":477.83},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":477.83},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":477.83},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":477.83},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":502.3,"y":477.83},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3840,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618575Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787084Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0836d44fa4f0ddf1ca3730122e245662","type":"PII","value":"43 377 50 34 13","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":521.15},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":302.69,"y":521.15},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":521.15},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":521.15},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":521.15},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3836,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618575Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787084Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1c24d667d9ba8217a000ef7cf15c82c0","type":"PII","value":"309 49 34 13 59","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":477.83},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":477.83},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":477.83},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":225.29,"y":477.83},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":269.93,"y":477.83},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3840,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618575Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787085Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"55d527457df36c4e9cf8f59dd89325d5","type":"PII","value":"382 39 32 11 55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.69,"y":466.91},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":466.91},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":466.91},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":466.91},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":502.3,"y":466.91},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3841,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618576Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787085Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"442314520f50822afba0469ba62acbfc","type":"PII","value":"38 378 54 33 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":510.34998},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":302.69,"y":510.34998},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":510.34998},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":510.34998},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":510.34998},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3837,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618576Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787085Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6dfe0bb9d1d09cd477bfb5d14caf6e52","type":"PII","value":"30 392 47 31 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":358.41},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":302.69,"y":358.41},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":358.41},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":358.41},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":358.41},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3851,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618576Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787085Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8ee2faea0508657dba19a9abb767c1ae","type":"PII","value":"384 45 35 14 74","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.69,"y":445.31},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":445.31},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":445.31},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":445.31},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":502.3,"y":445.31},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3843,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618576Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787085Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c01bad3169faecc6344a15740df7d0fd","type":"PII","value":"297 50 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":608.06},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":608.06},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":608.06},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3828,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618576Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787085Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe3678c4c3d4f15b5becbaa997b73f46","type":"PII","value":"311 50 28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":456.11},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":456.11},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":456.11},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3842,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618577Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787085Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"34ca57f67e00c72f6de815b7ee65d96d","type":"PII","value":"310 48 31 10 47","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":466.91},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":466.91},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":466.91},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":225.29,"y":466.91},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":269.93,"y":466.91},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3841,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618577Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787086Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"da6136493c9c83b454aecc938dcd0324","type":"PII","value":"370 48 33 12 59","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.69,"y":597.14},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":597.14},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":597.14},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":597.14},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":502.3,"y":597.14},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3829,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618577Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787086Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bd753872a09e4844ce4d6a5901b2a8d0","type":"PII","value":"299 53 29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":586.31},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":586.31},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":586.31},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3830,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618578Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787086Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b396cb29b1c3d01508e889ead15d2b16","type":"PII","value":"313 48 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":434.39},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":434.39},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":434.39},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3844,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618578Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787086Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4ddf4ea0c54ba16c59fb1d853e707d5b","type":"PII","value":"312 52 32 11 55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":445.31},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":445.31},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":445.31},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":225.29,"y":445.31},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":269.93,"y":445.31},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3843,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618578Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787086Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"17686b9f57dd2680e6218669b0298351","type":"PII","value":"298 44 32 11 53","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":597.14},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":597.14},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":597.14},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":225.29,"y":597.14},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":269.93,"y":597.14},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3829,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618578Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787086Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8220c546f0d6925c6bb55fc2980bc170","type":"PII","value":"48 369 45 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":608.06},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":302.69,"y":608.06},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":608.06},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":608.06},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3828,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618579Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787087Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2f2b9a802bf9c623666da5f6234acfb5","type":"PII","value":"386 46 35 14 72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.69,"y":423.59},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":423.59},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":423.59},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":423.59},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":502.3,"y":423.59},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3845,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618579Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787087Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"239416b5d4155a9e96dbb83c66757263","type":"PII","value":"315 54 29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":412.65},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":412.65},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":412.65},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3846,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618579Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787087Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eaddcb757d841257522f8c4fd931e809","type":"PII","value":"117 62","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":449.74,"y":752.9},"width":14.490997,"height":10.0905,"page":351},{"topLeft":{"x":482.86,"y":752.9},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3856,"textBefore":null,"textAfter":null,"comments":null,"startOffset":54,"endOffset":60,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618579Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787087Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"96ecb448d19928b1d11d56cfded37afa","type":"PII","value":"314 57 32 11 53","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":423.59},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":423.59},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":423.59},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":225.29,"y":423.59},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":269.93,"y":423.59},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3845,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61858Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787087Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ecc670c3d9123bf1f2dcc3496047db80","type":"PII","value":"40 383 49 32 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":456.11},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":302.69,"y":456.11},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":456.11},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":456.11},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":456.11},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3842,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61858Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787088Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b02b26b5fabce410cd4a3097b380e37b","type":"PII","value":"300 59 29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":575.39},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":575.39},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":575.39},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3831,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61858Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787088Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2ee43f95552d1a701b4fe473db24053a","type":"PII","value":"374 48 33 12 61","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.69,"y":553.79},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":553.79},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":553.79},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":553.79},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":502.3,"y":553.79},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3833,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61858Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787088Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a0d9212c12d40dc7438751d300a4c452","type":"PII","value":"301 55 28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":564.59},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":564.59},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":564.59},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3832,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618581Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787088Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"54441a1ae61611ce9d508a3955b82f92","type":"PII","value":"302 52 31 10 49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":553.79},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":553.79},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":553.79},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":225.29,"y":553.79},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":269.93,"y":553.79},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3833,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618581Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787088Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d4420fce9b21b5ac36adbb3a689a2642","type":"PII","value":"32 371 51 31 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":586.31},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":302.69,"y":586.31},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":586.31},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":586.31},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":586.31},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3830,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618581Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787088Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"336e257661d37edc12573a24067d16a6","type":"PII","value":"375 39 32 11 58","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.69,"y":542.87},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":542.87},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":542.87},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":542.87},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":502.3,"y":542.87},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3834,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618581Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787089Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a207372658f48baf1aaacf9f762da82b","type":"PII","value":"42 385 47 35 14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":434.39},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":302.69,"y":434.39},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":364.15,"y":434.39},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":415.27,"y":434.39},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":459.7,"y":434.39},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3844,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618582Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787089Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"44c1ef4ba339f40f5c0247202643cde8","type":"PII","value":"316 55 28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: 1500ppm treatment group)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.024,"y":401.85},"width":14.619995,"height":10.0905,"page":351},{"topLeft":{"x":129.74,"y":401.85},"width":10.059998,"height":10.0905,"page":351},{"topLeft":{"x":180.86,"y":401.85},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3847,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618582Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787089Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"01ec6c389a4adec738e97af0dc891503","type":"PII","value":"105 72","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.15,"y":752.9},"width":14.490997,"height":10.0905,"page":351},{"topLeft":{"x":433.15,"y":752.9},"width":10.059998,"height":10.0905,"page":351}],"sectionNumber":3856,"textBefore":null,"textAfter":null,"comments":null,"startOffset":45,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618582Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787089Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"855ccdf7f9afba01ca9f00aa28086c7f","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":351.95312,"y":728.18},"width":15.0980835,"height":11.017679,"page":352}],"sectionNumber":3859,"textBefore":"SYN545974 to the ","textAfter":":WI(Han) rat at","comments":null,"startOffset":296,"endOffset":299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618582Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7baa68840d703db11596ce43d2deb6ce","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.72913,"y":728.18},"width":19.337433,"height":11.017679,"page":352}],"sectionNumber":3859,"textBefore":"to the Crl:WI(","textAfter":") rat at","comments":null,"startOffset":303,"endOffset":306,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618583Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a95944f1b1bb489a51692b5116acfd9a","type":"CBI_address","value":"Sequani Limited, Bromyard Road, Ledbury, Herefordshire, HR8 1LH, UK.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.6.2. Developmental toxicity studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.47842,"y":278.49},"width":72.552704,"height":10.526819,"page":352},{"topLeft":{"x":133.82,"y":266.97003},"width":237.09671,"height":10.526819,"page":352}],"sectionNumber":3860,"textBefore":"in the Rat. ","textAfter":" Laboratory Report","comments":null,"startOffset":157,"endOffset":225,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618583Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8cffccae36074fc42a2d0faed35f470d","type":"CBI_author","value":"Manton J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.6.2. Developmental toxicity studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":203.81134,"y":290.01},"width":44.734375,"height":10.526819,"page":352}],"sectionNumber":3860,"textBefore":"Report: K-CA 5.6.2/01 ","textAfter":" (2011). SYN545974,","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618583Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1790e0bb7d93d1a60900ab5f4d1bfb10","type":"CBI_author","value":"Manton J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.6.2. Developmental toxicity studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.04425,"y":224.34003},"width":46.835938,"height":10.526819,"page":352}],"sectionNumber":3862,"textBefore":"Report: K-CA 5.6.2/02 ","textAfter":", (2016) SYN545974","comments":null,"startOffset":22,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618583Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6aac4292ab20d2abde2a2fe3a70c6286","type":"CBI_author","value":"Hackford S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.08945,"y":352.29},"width":51.49698,"height":11.017679,"page":352}],"sectionNumber":3859,"textBefore":"mg/kg/day (pre-pairing)). (","textAfter":", 2015)","comments":null,"startOffset":2514,"endOffset":2524,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618583Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"83e6e510e8520be8b5d2b04269c3193d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.6.2. Developmental toxicity studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":445.16678,"y":212.82},"width":38.160828,"height":10.526819,"page":352}],"sectionNumber":3862,"textBefore":"Bracknell, United Kingdom. ","textAfter":" File No.","comments":null,"startOffset":150,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618583Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0342a1d9adc7f60f23eb98ab4443c5d2","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.6.2. Developmental toxicity studies","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":344.41345,"y":135.06},"width":83.11554,"height":11.017679,"page":352}],"sectionNumber":3864,"textBefore":null,"textAfter":null,"comments":null,"startOffset":172,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618583Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b624abcaf2dc62665ac41c064312549","type":"CBI_address","value":"Syngenta - Jealott’s Hill, Bracknell, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.6.2. Developmental toxicity studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":219.49594,"y":212.82},"width":218.13513,"height":10.526819,"page":352}],"sectionNumber":3862,"textBefore":"Data for SYN545974_10003, ","textAfter":". Syngenta File","comments":null,"startOffset":96,"endOffset":148,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618584Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f82bdf25d3b66353e2f4146247cda1d8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.6.2. Developmental toxicity studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":251.99536,"y":255.57},"width":38.05127,"height":10.526819,"page":352}],"sectionNumber":3860,"textBefore":"October 2011. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":287,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618584Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fa27c8f34b7d7665acefafef86c28dbe","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.79895,"y":628.94},"width":36.968292,"height":11.017679,"page":353}],"sectionNumber":3865,"textBefore":"rats of the ","textAfter":"-Dawley strain were","comments":null,"startOffset":364,"endOffset":371,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618584Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"500709a625c69ea825348e5b2a6a22ea","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":311.81958,"y":341.01},"width":40.22513,"height":10.929359,"page":353}],"sectionNumber":3865,"textBefore":"to the pregnant ","textAfter":"-Dawley rat, from","comments":null,"startOffset":1970,"endOffset":1977,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618584Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8915f5a29379df362cd8d1ea145999b4","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":476.26,"y":53.200012},"width":29.997955,"height":10.0905,"page":353}],"sectionNumber":3867,"textBefore":"and delivered to ","textAfter":" b","comments":null,"startOffset":143,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618584Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e0cc359dd32b6bbc39bfb6303976f89e","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":182.22003},"width":28.467995,"height":10.018499,"page":353}],"sectionNumber":3866,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":88,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618584Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ea267d1f9d5904ce25b6ee6a9944226a","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":187.73,"y":68.32001},"width":12.501999,"height":10.0905,"page":353}],"sectionNumber":3867,"textBefore":null,"textAfter":":CD (SD)","comments":null,"startOffset":33,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618584Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2fa033ea90dda686917f988943956ca9","type":"PII","value":"31-60","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.93399,"y":626.3},"width":22.093002,"height":10.0905,"page":354}],"sectionNumber":3868,"textBefore":"° C Humidity: ","textAfter":"% (target range","comments":null,"startOffset":522,"endOffset":527,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618584Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787091Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"972ce3585083c0136c83a6cd626ec9bf","type":"PII","value":"100 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.83,"y":363.81},"width":14.619995,"height":10.0905,"page":354},{"topLeft":{"x":482.02,"y":363.81},"width":10.059998,"height":10.0905,"page":354}],"sectionNumber":3873,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618585Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787091Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c43a7b8ad5aa59e98d79bba95722b2ed","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Animal numbers and treatment groups","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":314.8776,"y":278.13},"width":36.449432,"height":11.017679,"page":354}],"sectionNumber":3878,"textBefore":"study performed at ","textAfter":". Dose preparation","comments":null,"startOffset":200,"endOffset":207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618585Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d06882647d0910f0583d1ab8fbfcb42d","type":"CBI_address","value":"Charles River (UK) Limited, Margate, Kent, CT9 4LT, England","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":456.9651,"y":679.1},"width":50.653015,"height":10.0905,"page":354},{"topLeft":{"x":187.73,"y":668.78},"width":180.12001,"height":10.0905,"page":354}],"sectionNumber":3868,"textBefore":"SDS) supplied by ","textAfter":null,"comments":null,"startOffset":349,"endOffset":408,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618585Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d146d777b9859c98753287c006fa4ec","type":"PII","value":"1000 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":384.55,"y":318.45},"width":19.044983,"height":10.0905,"page":354},{"topLeft":{"x":482.02,"y":318.45},"width":10.059998,"height":10.0905,"page":354}],"sectionNumber":3876,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618585Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787092Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"782e751cb9dc3c2f928fabf41f96e2b0","type":"PII","value":"500 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.83,"y":333.57},"width":14.619995,"height":10.0905,"page":354},{"topLeft":{"x":482.02,"y":333.57},"width":10.059998,"height":10.0905,"page":354}],"sectionNumber":3875,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618585Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787092Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e36ad4f67bb35da5d0f01350a1a89f62","type":"PII","value":"200 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.83,"y":348.69},"width":14.619995,"height":10.0905,"page":354},{"topLeft":{"x":482.02,"y":348.69},"width":10.059998,"height":10.0905,"page":354}],"sectionNumber":3874,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618585Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787092Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bea7ed2fb3e8d85a8c155fdfcf35df5f","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Observations:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":628.34},"width":61.874573,"height":11.017679,"page":355}],"sectionNumber":3879,"textBefore":"are reported under ","textAfter":" Study Number:","comments":null,"startOffset":952,"endOffset":965,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618585Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6ed1f03e60e06c0f49207f1c86a4eb95","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Observations:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":476.74603,"y":703.58},"width":36.4494,"height":11.017679,"page":355}],"sectionNumber":3879,"textBefore":"of arrival at ","textAfter":" and then","comments":null,"startOffset":549,"endOffset":556,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618586Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ef184a8710469895e63342a6488b15f2","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":184.7,"y":241.5},"width":26.734238,"height":11.017679,"page":356}],"sectionNumber":3921,"textBefore":"Sacrifice and pathology: ","textAfter":" pathology maternal:","comments":null,"startOffset":912,"endOffset":917,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618586Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d97daf003b9dfd184ca96cecca25326","type":"PII","value":"100 200 500 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-1: Intergroup comparison of body weight gain (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.69,"y":467.15},"width":14.619995,"height":10.0905,"page":356},{"topLeft":{"x":322.15,"y":467.15},"width":14.619995,"height":10.0905,"page":356},{"topLeft":{"x":395.71,"y":467.15},"width":14.619995,"height":10.0905,"page":356},{"topLeft":{"x":475.66,"y":467.15},"width":19.044983,"height":10.0905,"page":356}],"sectionNumber":3882,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618586Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787093Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"455578657eeb1660e4871c2edbda5ddb","type":"PII","value":"100 200 500 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-2: Caesarean section observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.07,"y":95.224},"width":14.619995,"height":10.018499,"page":356},{"topLeft":{"x":399.55,"y":95.224},"width":14.619995,"height":10.018499,"page":356},{"topLeft":{"x":457.06,"y":95.224},"width":14.619995,"height":10.018499,"page":356},{"topLeft":{"x":505.78,"y":95.224},"width":19.045013,"height":10.018499,"page":356}],"sectionNumber":3894,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618586Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787093Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7fd710b428dbe34667931b1b1b0eaa73","type":"PII","value":"20 124","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-1: Intergroup comparison of body weight gain (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.064,"y":361.05},"width":9.940002,"height":10.0905,"page":356},{"topLeft":{"x":156.38,"y":361.05},"width":14.608002,"height":10.0905,"page":356}],"sectionNumber":3889,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618586Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787093Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7876c89fe4b131468681730cb54e921d","type":"PII","value":"19 111","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-1: Intergroup comparison of body weight gain (g)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":77.064,"y":376.17},"width":9.940002,"height":10.0905,"page":356},{"topLeft":{"x":163.34,"y":376.17},"width":14.608002,"height":10.0905,"page":356}],"sectionNumber":3888,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618586Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787093Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7933b1cf2a2d08b98990d0b520c8f0f0","type":"CBI_author","value":"Manton J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":365.17975,"y":307.28998},"width":44.265747,"height":11.017679,"page":357}],"sectionNumber":3921,"textBefore":"laboratory (K-CA 5.6.2/02 ","textAfter":", (2016)) which","comments":null,"startOffset":2257,"endOffset":2265,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618587Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9b3c036f9fc6a435bfea37ccd4a6745e","type":"PII","value":"100 200 500 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-2: Caesarean section observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.07,"y":737.3},"width":14.619995,"height":10.018499,"page":357},{"topLeft":{"x":399.55,"y":737.3},"width":14.619995,"height":10.018499,"page":357},{"topLeft":{"x":457.06,"y":737.3},"width":14.619995,"height":10.018499,"page":357},{"topLeft":{"x":505.78,"y":737.3},"width":19.045013,"height":10.018499,"page":357}],"sectionNumber":3899,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618587Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787094Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b20855750aeee436af74f7ae1d01fe15","type":"CBI_author","value":"Manton J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":285.62885,"y":320.01},"width":45.13791,"height":11.017679,"page":357}],"sectionNumber":3921,"textBefore":"study (K-CA 5.6.2/01 ","textAfter":" (2011) or","comments":null,"startOffset":2140,"endOffset":2149,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618587Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a5aaec0f386dec5b47fdec4546914fe5","type":"CBI_address","value":"Syngenta - Jealott’s Hill, Bracknell, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: incidence/group mean %)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":129.18},"width":214.27618,"height":10.526819,"page":358}],"sectionNumber":3941,"textBefore":"Data for SYN545974_10190, ","textAfter":". Syngenta File","comments":null,"startOffset":96,"endOffset":148,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618588Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6df09fc2b4342cc702713d250e294142","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: incidence/group mean %)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":351.9268,"y":129.18},"width":38.160828,"height":10.526819,"page":358}],"sectionNumber":3941,"textBefore":"Bracknell, United Kingdom. ","textAfter":" File No.","comments":null,"startOffset":150,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618588Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f7dc28d29004ed48891d59f5261ff0b2","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"incidence/group mean %)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":465.74347,"y":393.21},"width":45.412903,"height":9.65418,"page":358}],"sectionNumber":3943,"textBefore":"the Sprague-Dawley Rat ","textAfter":" (UK): 13","comments":null,"startOffset":141,"endOffset":154,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618588Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"42abd68d2143d3e5099f27c648c9397b","type":"PII","value":"100 200 500 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: incidence/group mean %)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":280.73,"y":714.74},"width":14.619995,"height":10.018499,"page":358},{"topLeft":{"x":326.83,"y":714.74},"width":14.619995,"height":10.018499,"page":358},{"topLeft":{"x":369.31,"y":714.74},"width":14.619995,"height":10.018499,"page":358},{"topLeft":{"x":413.23,"y":714.74},"width":19.044983,"height":10.018499,"page":358}],"sectionNumber":3923,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618588Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787094Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"13d9e67d14b6921df767c60cd2ba3d94","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"incidence/group mean %)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.05753,"y":332.25},"width":37.089752,"height":11.017679,"page":358}],"sectionNumber":3943,"textBefore":"to the pregnant ","textAfter":"-Dawley rat, from","comments":null,"startOffset":414,"endOffset":421,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618589Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cfdc423b9730068c2419dc642cd72a48","type":"CBI_author","value":"Manton J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"incidence/group mean %)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":459.20944,"y":269.61},"width":42.234375,"height":11.017679,"page":358}],"sectionNumber":3943,"textBefore":"test item. (","textAfter":", 2011) Guidelines:","comments":null,"startOffset":758,"endOffset":766,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618589Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59b636055cd36cbf5e4b20d8f480c7e0","type":"CBI_address","value":"Sequani Limited, Bromyard Road, Ledbury, Herefordshire, HR8 1LH, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: incidence/group mean %)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":203.45,"y":194.82},"width":312.57904,"height":10.526819,"page":358},{"topLeft":{"x":133.82,"y":183.29999},"width":38.838043,"height":10.526819,"page":358}],"sectionNumber":3939,"textBefore":"in the Rat. ","textAfter":". Laboratory Report","comments":null,"startOffset":115,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618589Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"100b2cfefdd5b1c34444a4361873a4d4","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"incidence/group mean %)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.28415,"y":393.21},"width":27.218414,"height":9.65418,"page":358}],"sectionNumber":3943,"textBefore":"Studies on the ","textAfter":"-Dawley Rat Charles","comments":null,"startOffset":122,"endOffset":129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618589Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5648dd5ab0935e7e860588445612063f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: incidence/group mean %)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":425.03073,"y":183.29999},"width":38.160828,"height":10.526819,"page":358}],"sectionNumber":3939,"textBefore":"May 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":253,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618589Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f6c38141120cc3debf787c54a26c12a","type":"CBI_author","value":"Manton J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"incidence/group mean %)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":506.676,"y":384.09},"width":25.899933,"height":9.65418,"page":358},{"topLeft":{"x":64.104,"y":374.85},"width":6.1375656,"height":9.65418,"page":358}],"sectionNumber":3943,"textBefore":"report K-CA 5.6.2/01 ","textAfter":" (2011) and","comments":null,"startOffset":297,"endOffset":306,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61859Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ed96d789194760719a1341e92622454","type":"CBI_author","value":"Davies S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: incidence/group mean %)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.1222,"y":206.22003},"width":39.146805,"height":10.526819,"page":358}],"sectionNumber":3939,"textBefore":"Report: K-CA 5.6.2/03 ","textAfter":" (2015). SYN545974:","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61859Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c009e59bd160b8aeed2cda69d19f4a74","type":"CBI_address","value":"Sequani Limited","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"incidence/group mean %)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":68.664,"y":393.21},"width":54.30519,"height":9.65418,"page":358}],"sectionNumber":3943,"textBefore":"mean %) ǂ ","textAfter":" background Data","comments":null,"startOffset":26,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61859Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb084a8ba9bf8bcc5142378feeb051ae","type":"CBI_author","value":"Manton","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"incidence/group mean %)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.99425,"y":374.85},"width":25.899933,"height":9.65418,"page":358}],"sectionNumber":3943,"textBefore":"report K-CA 5.6.2/02 ","textAfter":" 2016). CONCLUSION:","comments":null,"startOffset":339,"endOffset":345,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61859Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24677ab73d58aacf1b1c7294bd2cd23c","type":"PII","value":"(2008-2013","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: incidence/group mean %)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":473.12802,"y":715.22},"width":43.191986,"height":10.018499,"page":358}],"sectionNumber":3922,"textBefore":"Historical Control Data ","textAfter":")","comments":null,"startOffset":55,"endOffset":65,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61859Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787096Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"edaa01c39b5c5dfcf46412484c06a928","type":"CBI_author","value":"Davies S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: incidence/group mean %)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.36124,"y":140.58002},"width":36.89273,"height":10.526819,"page":358}],"sectionNumber":3941,"textBefore":"Report: K-CA 5.6.2/04 ","textAfter":", (2016) SYN545974","comments":null,"startOffset":22,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618591Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9d0e3100dd5765c51967128d191f03b","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":499.3605,"y":614.42},"width":14.987701,"height":11.017679,"page":359}],"sectionNumber":3944,"textBefore":"young adult, female ","textAfter":":CD (SD) rats","comments":null,"startOffset":113,"endOffset":116,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618591Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db9b63a93ed2705a29bf4a061af873e5","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":394.27737,"y":171.29999},"width":16.7872,"height":10.929359,"page":359}],"sectionNumber":3944,"textBefore":"gavage, to pregnant ","textAfter":":CD (SD) rats","comments":null,"startOffset":2764,"endOffset":2767,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618591Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c0f4260066d870b337b70dc9ec0a4067","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":470.02264,"y":601.7},"width":27.275177,"height":11.017679,"page":359}],"sectionNumber":3944,"textBefore":null,"textAfter":null,"comments":null,"startOffset":206,"endOffset":212,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618591Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"30068fd70eb52dbe3d9a5992ece0903d","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"incidence/group mean %)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":753.5},"width":82.53038,"height":11.017679,"page":359}],"sectionNumber":3943,"textBefore":null,"textAfter":null,"comments":null,"startOffset":910,"endOffset":927,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618591Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1700b035881e89ead3647fcc7ee1b7e7","type":"CBI_address","value":"Charles River (UK) Limited, Margate, Kent, CT9 4LT, England","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":441.76706,"y":485.03},"width":71.884,"height":10.0905,"page":360},{"topLeft":{"x":211.61,"y":474.71},"width":158.58104,"height":10.0905,"page":360}],"sectionNumber":3946,"textBefore":"SDS) supplied by ","textAfter":" ad libitum","comments":null,"startOffset":319,"endOffset":378,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618592Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b1d045474fbea7051e491608394e9f17","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":549.35},"width":12.501999,"height":10.0905,"page":360}],"sectionNumber":3946,"textBefore":null,"textAfter":":CD(SD)","comments":null,"startOffset":33,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618592Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70fe5bb0a03d42fb4b3a32ee4ead0d82","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":664.46},"width":28.467995,"height":10.018499,"page":360}],"sectionNumber":3945,"textBefore":null,"textAfter":null,"comments":null,"startOffset":96,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618592Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6a35f9ba7f36429bbef38477051c7d4a","type":"PII","value":"24 100 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.57,"y":133.02002},"width":10.059998,"height":10.0905,"page":360},{"topLeft":{"x":350.83,"y":133.02002},"width":14.620026,"height":10.0905,"page":360},{"topLeft":{"x":470.02,"y":133.02002},"width":10.059998,"height":10.0905,"page":360}],"sectionNumber":3952,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618592Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787097Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f6dbbf7664f435ab65db4d9f2f7d066a","type":"PII","value":"224-298","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":316.57095,"y":536.51},"width":31.107025,"height":10.0905,"page":360}],"sectionNumber":3946,"textBefore":"9-10 weeks / ","textAfter":" g","comments":null,"startOffset":92,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618592Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787097Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe61d8178280e48827d6f0e529b80d18","type":"PII","value":"40-70","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.814,"y":437.63},"width":22.093018,"height":10.0905,"page":360}],"sectionNumber":3946,"textBefore":"Temperature: 19-23°C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":479,"endOffset":484,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618592Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787097Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"131cbc3d07218fd1cd6a9198ce6845f0","type":"CBI_author","value":"Armitage","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.34,"y":513.11},"width":42.477295,"height":11.017679,"page":363}],"sectionNumber":3954,"textBefore":"of the Cochran-","textAfter":" Test. The","comments":null,"startOffset":9856,"endOffset":9864,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618593Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e203431d2786bf560e69b60f34801223","type":"CBI_author","value":"Cochran","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":92.50991,"y":513.11},"width":38.29313,"height":11.017679,"page":363}],"sectionNumber":3954,"textBefore":"version of the ","textAfter":"-Armitage Test. The","comments":null,"startOffset":9848,"endOffset":9855,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618593Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b46bf03ef1ef334ee73f4fa71891efb","type":"CBI_author","value":"Gross","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":121.02002},"width":28.566887,"height":10.929359,"page":363}],"sectionNumber":3987,"textBefore":"Sacrifice and pathology: ","textAfter":" pathology: There","comments":null,"startOffset":1731,"endOffset":1736,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618593Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8dc3bd39ea5f9d885c524b74dcdee95a","type":"PII","value":"100 82","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-6: Summary of major fetal abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":96.864,"y":173.94},"width":14.619995,"height":10.0905,"page":364},{"topLeft":{"x":155.78,"y":173.94},"width":10.059998,"height":10.0905,"page":364}],"sectionNumber":3984,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618593Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787098Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2d753a48cbb234a9feaae60f244b0029","type":"CBI_address","value":"Crl:","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":386.17792,"y":66.52002},"width":17.979523,"height":11.017679,"page":364}],"sectionNumber":3987,"textBefore":"data for the ","textAfter":" CD (SD)","comments":null,"startOffset":3456,"endOffset":3460,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618593Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"97232de16ecab5ab7763bddfc00bad21","type":"PII","value":"10 30 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-5: Caesarean section observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":362.59,"y":682.34},"width":10.059998,"height":10.018499,"page":364},{"topLeft":{"x":428.35,"y":682.34},"width":10.059998,"height":10.018499,"page":364},{"topLeft":{"x":491.74,"y":682.34},"width":14.619995,"height":10.018499,"page":364}],"sectionNumber":3956,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618593Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787098Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"57955e1a86b8e34c81fc82a3e849177d","type":"CBI_author","value":"Davies S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":487.7183,"y":104.46002},"width":44.884003,"height":11.017679,"page":364}],"sectionNumber":3987,"textBefore":"study (K-CA 5.6.2/03 ","textAfter":" (2015)) or","comments":null,"startOffset":3168,"endOffset":3177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618594Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a8bfd34a9ce44362582a7255484bc6f","type":"CBI_author","value":"Manton J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":103.68239,"y":79.119995},"width":42.819504,"height":11.017679,"page":364}],"sectionNumber":3987,"textBefore":"laboratory (K-CA 5.6.2/02 ","textAfter":", (2016)) which","comments":null,"startOffset":3286,"endOffset":3294,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618594Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9944ed33a470ee0e7dc62488ed7c354","type":"CBI_author","value":"Barnes","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":124.689445,"y":53.799988},"width":31.558723,"height":11.017679,"page":364}],"sectionNumber":3987,"textBefore":"CA 5.6.2/07 (","textAfter":" 2015) presented","comments":null,"startOffset":3503,"endOffset":3509,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618594Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4f8ed2431cb4725ee4fb4a9707a4f45","type":"CBI_author","value":"Rousseaux, C.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":241.51482,"y":77.20001},"width":47.62062,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6157,"endOffset":6170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618594Z"}],"manualChanges":[],"engines":["NER"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d0eed285eab7e2f1c0ec6a060f2ec610","type":"CBI_author","value":"Harada","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":166.35686,"y":77.20001},"width":24.002472,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":"B., Maronpot, R.R., ","textAfter":", T., Nyska,","comments":null,"startOffset":6134,"endOffset":6140,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618594Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43696f7584418ff7a2e76962f3dd9001","type":"CBI_author","value":"Nakae, D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":509.13568,"y":77.20001},"width":23.383362,"height":9.65418,"page":365},{"topLeft":{"x":64.104,"y":67.96002},"width":8.76664,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6238,"endOffset":6247,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618594Z"}],"manualChanges":[],"engines":["NER"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"78cb103acb0353e3d0a8f3a8080b676f","type":"CBI_author","value":"Singh","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":207.11954,"y":67.96002},"width":19.644775,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":"M.P., Brix, A.E., ","textAfter":", B., Belpoggi,","comments":null,"startOffset":6289,"endOffset":6294,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618594Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea87f0351f1e34e8eb98271213971c07","type":"PII","value":"71-94","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":482.38696,"y":49.599976},"width":19.881256,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":"Press, San Diego, ","textAfter":". Table 6.6.2-7:","comments":null,"startOffset":6585,"endOffset":6590,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618594Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787099Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12eeb900a3c763bee499d9c403e01e5c","type":"CBI_author","value":"Deschl","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":470.53568,"y":77.20001},"width":23.262726,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":"W., Küttler, K., ","textAfter":", U., Nakae,","comments":null,"startOffset":6226,"endOffset":6232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618594Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"229e75934eaa8b41f28a6533e2ac6e13","type":"CBI_author","value":"Ward","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":286.3457,"y":67.96002},"width":18.687958,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":"B., Belpoggi, F., ","textAfter":", J.M., (2010).","comments":null,"startOffset":6314,"endOffset":6318,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618595Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47fa5511619d95a354db24c28f8d9e99","type":"CBI_author","value":"Belpoggi, F.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":241.86038,"y":67.96002},"width":41.03116,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6300,"endOffset":6312,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618595Z"}],"manualChanges":[],"engines":["NER"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6e8552c47c3940c35992d2a57fec25f7","type":"CBI_author","value":"Brix","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":169.59682,"y":67.96002},"width":15.206711,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":"R., Vinlove, M.P., ","textAfter":", A.E., Singh,","comments":null,"startOffset":6277,"endOffset":6281,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618595Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"af71153c8a3acd37bd049b1a82c98219","type":"published_information","value":"Toxicologic Pathology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":157.40822,"y":58.72003},"width":74.15169,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6420,"endOffset":6441,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618595Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7daffa12a675ca9377461942a3002e95","type":"CBI_author","value":"Gregson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":76.32479,"y":67.96002},"width":27.93399,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":"U., Nakae, D., ","textAfter":", R., Vinlove,","comments":null,"startOffset":6249,"endOffset":6256,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618595Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"55a5828a749be31250ede564e4b6cf9b","type":"CBI_author","value":"Boorman, G.A.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":109.88507,"y":49.599976},"width":50.253036,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6471,"endOffset":6484,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618595Z"}],"manualChanges":[],"engines":["NER"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e8ca3f6c38fd6455979e699b17567869","type":"CBI_author","value":"Fischer","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":348.53632,"y":49.599976},"width":24.541077,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":"Pathology of the ","textAfter":" Rat. Academic","comments":null,"startOffset":6545,"endOffset":6552,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618595Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95fbd4d64e581ec726395c4f3674422f","type":"CBI_author","value":"Eustic, S.L.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":68.664,"y":49.599976},"width":38.128716,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6457,"endOffset":6469,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618596Z"}],"manualChanges":[],"engines":["NER"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"14966087a7166df9ae74f1eda509ae05","type":"CBI_author","value":"Davies S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":276.97253,"y":475.19},"width":44.906097,"height":11.017679,"page":365}],"sectionNumber":3987,"textBefore":"reports K-CA 5.6.2/03 ","textAfter":" (2015)) and","comments":null,"startOffset":5478,"endOffset":5487,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618596Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1628e8dd5b7143d6a939f57677555a84","type":"CBI_author","value":"Thoolen, B.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":68.904,"y":77.20001},"width":39.33471,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6105,"endOffset":6116,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618596Z"}],"manualChanges":[],"engines":["NER"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ecd20c0577be72abf2d85edf45e79ba9","type":"CBI_author","value":"Nolte","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":292.469,"y":77.20001},"width":18.72815,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":"A., Rousseaux, C., ","textAfter":", T., Malarkey,","comments":null,"startOffset":6172,"endOffset":6177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618596Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"97171e7756b6fb2b61dc1f9484778e5c","type":"hint_only","value":"pathologist","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":601.7},"width":49.874084,"height":11.017679,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4413,"endOffset":4424,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618596Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"44529b73c9e7f52ffc575cad3abdd182","type":"CBI_author","value":"Vinlove, M.P.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":119.596054,"y":67.96002},"width":46.659164,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6262,"endOffset":6275,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618596Z"}],"manualChanges":[],"engines":["NER"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"77aeccb9d801351dd57309b85a42798a","type":"CBI_author","value":"Popp","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":201.21948,"y":49.599976},"width":17.385544,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":"G.A., Harada, T., ","textAfter":", J.A., (1990).","comments":null,"startOffset":6498,"endOffset":6502,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618596Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"803f361bc7e88cea9ec2a218e20eb881","type":"published_information","value":"Academic Press","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":389.71,"y":49.599976},"width":52.094147,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6558,"endOffset":6572,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618596Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fa42b87f99af5bba9d24e778e6bf6af5","type":"CBI_author","value":"Nyska, A.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":204.83632,"y":77.20001},"width":33.34494,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6146,"endOffset":6155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618597Z"}],"manualChanges":[],"engines":["NER"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c428908ea9c331fa4580c914c9c197ab","type":"CBI_author","value":"Küttler, K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":431.59,"y":77.20001},"width":35.61212,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6213,"endOffset":6224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618597Z"}],"manualChanges":[],"engines":["NER"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6b74ed61011415f3c6ab6ec0d815de75","type":"CBI_author","value":"Malarkey","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":325.5616,"y":77.20001},"width":31.75296,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":"C., Nolte, T., ","textAfter":", D.E., Kaufmann,","comments":null,"startOffset":6183,"endOffset":6191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618597Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"028ec5e7f7dfb1f34c59532427dcc4a8","type":"CBI_author","value":"Kaufmann, W.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":379.50195,"y":77.20001},"width":48.55655,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6199,"endOffset":6211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618597Z"}],"manualChanges":[],"engines":["NER"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b688de421b89315634dfa323298cf0f9","type":"CBI_author","value":"Maronpot, R.R.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":111.45167,"y":77.20001},"width":51.571632,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6118,"endOffset":6132,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618597Z"}],"manualChanges":[],"engines":["NER"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2508bb22f81496caebea0ad2a6197bfc","type":"CBI_author","value":"Harada","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":163.23047,"y":49.599976},"width":24.10698,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":"S.L., Boorman, G.A., ","textAfter":", T., Popp,","comments":null,"startOffset":6486,"endOffset":6492,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618597Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93600785b887038b4d4ae5c4a6a9d1b1","type":"CBI_author","value":"San","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":444.86435,"y":49.599976},"width":13.051941,"height":9.65418,"page":365}],"sectionNumber":3987,"textBefore":"Rat. Academic Press, ","textAfter":" Diego, 71-94.","comments":null,"startOffset":6574,"endOffset":6577,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618598Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bff652f5888b38d4f3ada21c72d2dc33","type":"CBI_author","value":"Manton J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":485.91257,"y":475.19},"width":43.90146,"height":11.017679,"page":365}],"sectionNumber":3987,"textBefore":"report K-CA 5.6.2/02 ","textAfter":", (2016)) including","comments":null,"startOffset":5521,"endOffset":5529,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618598Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["803f361bc7e88cea9ec2a218e20eb881","af71153c8a3acd37bd049b1a82c98219"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d765885ba42f8cfebc15f0856ae61abb","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: External examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":512.59,"y":326.15},"width":28.649414,"height":9.58986,"page":366}],"sectionNumber":3999,"textBefore":null,"textAfter":" a","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618598Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b392631b647259e821fdc9777e390a32","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Visceral examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":569.04126,"y":188.13},"width":28.649414,"height":9.58986,"page":366}],"sectionNumber":4009,"textBefore":"HCD range from ","textAfter":" d/e (incidence","comments":null,"startOffset":60,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618598Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f4f6d51e2882db0f171b5ef6a94dd65","type":"PII","value":"311 271 317 296","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: incidence (group mean %))","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.18,"y":434.9},"width":13.051971,"height":9.6582,"page":366},{"topLeft":{"x":271.01,"y":434.9},"width":13.051941,"height":9.6582,"page":366},{"topLeft":{"x":341.93,"y":434.9},"width":13.051941,"height":9.6582,"page":366},{"topLeft":{"x":412.73,"y":434.9},"width":13.051941,"height":9.6582,"page":366}],"sectionNumber":3991,"textBefore":null,"textAfter":null,"comments":null,"startOffset":20,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618598Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787101Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31efe0f0adfb8d12d181082140cb04a2","type":"PII","value":"10 30 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: External examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":304.73,"y":326.15},"width":9.099976,"height":9.58986,"page":366},{"topLeft":{"x":377.93,"y":326.15},"width":9.099976,"height":9.58986,"page":366},{"topLeft":{"x":453.31,"y":326.15},"width":13.051941,"height":9.58986,"page":366}],"sectionNumber":3999,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618598Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787102Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a4f15438e2e434a6328305ed7535414a","type":"PII","value":"158 137 159 147","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Visceral examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":239.18,"y":159.21002},"width":13.051971,"height":9.6582,"page":366},{"topLeft":{"x":302.93,"y":159.21002},"width":13.051941,"height":9.6582,"page":366},{"topLeft":{"x":377.33,"y":159.21002},"width":13.051941,"height":9.6582,"page":366},{"topLeft":{"x":455.35,"y":159.21002},"width":13.051941,"height":9.6582,"page":366}],"sectionNumber":4012,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618598Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787102Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b16640cc2ea01ac2e58776c1de8f5196","type":"PII","value":"311 271 317 296","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: External examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.46,"y":306.83},"width":13.051971,"height":9.6582,"page":366},{"topLeft":{"x":302.81,"y":306.83},"width":13.051941,"height":9.6582,"page":366},{"topLeft":{"x":375.89,"y":306.83},"width":13.051941,"height":9.6582,"page":366},{"topLeft":{"x":453.31,"y":306.83},"width":13.051941,"height":9.6582,"page":366}],"sectionNumber":4001,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618599Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787102Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"81be21a356281a20e9d5744416eb2f58","type":"PII","value":"10 30 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Visceral examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":304.85,"y":178.41},"width":9.099976,"height":9.58986,"page":366},{"topLeft":{"x":379.37,"y":178.41},"width":9.099976,"height":9.58986,"page":366},{"topLeft":{"x":455.35,"y":178.41},"width":13.051941,"height":9.58986,"page":366}],"sectionNumber":4010,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618599Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787102Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"da95041b4a97b797417a9ac6269078ab","type":"PII","value":"10 30 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: incidence (group mean %))","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.05,"y":454.22},"width":9.099976,"height":9.58986,"page":366},{"topLeft":{"x":343.85,"y":454.22},"width":9.099976,"height":9.58986,"page":366},{"topLeft":{"x":412.73,"y":454.22},"width":13.051941,"height":9.58986,"page":366}],"sectionNumber":3989,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618599Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787102Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"00e5db3d3f1a8e19e166f99d12f2f16a","type":"PII","value":"10 30 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":315.53,"y":334.19},"width":9.099976,"height":9.58986,"page":367},{"topLeft":{"x":372.17,"y":334.19},"width":9.099976,"height":9.58986,"page":367},{"topLeft":{"x":430.51,"y":334.19},"width":13.051941,"height":9.58986,"page":367}],"sectionNumber":4031,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618599Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787103Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cca5430a78e9f9cad8162b7e8cfa19cc","type":"PII","value":"158 137 159 147","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":239.9,"y":314.87},"width":13.051971,"height":9.6582,"page":367},{"topLeft":{"x":296.69,"y":314.87},"width":13.051941,"height":9.6582,"page":367},{"topLeft":{"x":353.33,"y":314.87},"width":13.051941,"height":9.6582,"page":367},{"topLeft":{"x":410.09,"y":314.87},"width":13.051941,"height":9.6582,"page":367}],"sectionNumber":4033,"textBefore":null,"textAfter":null,"comments":null,"startOffset":20,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618599Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787103Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e0a136043462540aa0f0bb12915e1100","type":"PII","value":"158 137 159 147","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Visceral examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":253.37,"y":499.7},"width":13.051941,"height":9.6582,"page":367},{"topLeft":{"x":320.69,"y":499.7},"width":13.051941,"height":9.6582,"page":367},{"topLeft":{"x":388.01,"y":499.7},"width":13.051941,"height":9.6582,"page":367},{"topLeft":{"x":455.35,"y":499.7},"width":13.051941,"height":9.6582,"page":367}],"sectionNumber":4020,"textBefore":null,"textAfter":null,"comments":null,"startOffset":20,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618599Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787103Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d9c294231fa0e975db1aa521687ba84","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":494.95,"y":334.31},"width":28.661377,"height":9.58986,"page":367}],"sectionNumber":4031,"textBefore":null,"textAfter":" d","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618599Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"36e9d947c8cd724a38df4dfdab97a87b","type":"CBI_author","value":"Cochran","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":318.40756,"y":261.21},"width":28.159088,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"Jonckheere test and/or ","textAfter":"-armitage test. a","comments":null,"startOffset":108,"endOffset":115,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618599Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"715d8966f711ff44bd2c1cc02cf3e8e8","type":"CBI_address","value":"Crl:","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":263.6596,"y":249.93},"width":13.542358,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"Sprague Dawley (","textAfter":" CD[SD]) strain)","comments":null,"startOffset":196,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618599Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"01e0da1c8f923038b3dd0824cb42bca3","type":"CBI_address","value":"Crl:","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":229.23273,"y":222.33002},"width":13.542419,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"Sprague Dawley (","textAfter":" CD[SD]) strain","comments":null,"startOffset":638,"endOffset":642,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618599Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"26633daf43fc66277d753387723cd41e","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":308.044,"y":203.97},"width":26.856628,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"CD[SD]) strain from ","textAfter":" laboratory (conducting","comments":null,"startOffset":888,"endOffset":895,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6186Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28125d1b5a586b31ed71a4f27b4d3d13","type":"PII","value":"(55-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":503.69608,"y":329.63},"width":26.281464,"height":9.65418,"page":368}],"sectionNumber":4059,"textBefore":"(12.6-49.0%) L: 11-20 ","textAfter":"%)","comments":null,"startOffset":193,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6186Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787104Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4a72d6ee9b4aa8d3b060215df8f28fef","type":"PII","value":"20-71","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":482.46494,"y":338.75},"width":19.773285,"height":9.65418,"page":368}],"sectionNumber":4059,"textBefore":"F: ","textAfter":" (12.6-49.0%) L:","comments":null,"startOffset":165,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6186Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787104Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8959d4ac3c56cf259d5d2890f6abe7ff","type":"CBI_address","value":"Crl:","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":226.8749,"y":203.97},"width":13.542419,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"Sprague Dawley (","textAfter":" CD[SD]) strain","comments":null,"startOffset":863,"endOffset":867,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6186Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6bac348d2ca19ae933874f9a6fe99a05","type":"CBI_address","value":"Crl:","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":231.43147,"y":240.81},"width":13.542419,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"Sprague Dawley (","textAfter":" CD[SD]) strain","comments":null,"startOffset":398,"endOffset":402,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6186Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8fe93d8cecf8a5dabf5a43b907c95dba","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":316.44318,"y":185.60999},"width":26.736023,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"CD[SD]) strain from ","textAfter":" laboratory (conducting","comments":null,"startOffset":1120,"endOffset":1127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6186Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3f1b4cea94652a4537abe6b1a7614fbd","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":124.19808,"y":222.33002},"width":45.413002,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"HCD in the ","textAfter":" Sprague Dawley","comments":null,"startOffset":608,"endOffset":621,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6186Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"044c4c49df56723f4cf1807bc64c5193","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":159.95157,"y":249.93},"width":45.1718,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"HCD in the ","textAfter":" Sprague Dawley","comments":null,"startOffset":166,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6186Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"85212da1134d0807eaeb831b10b7ae39","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":206.11728,"y":249.93},"width":27.33905,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"the Charles River ","textAfter":" Dawley (Crl:","comments":null,"startOffset":180,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6186Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"241821fc796684c0e78cf6e8bdb32559","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":170.9668,"y":222.33002},"width":27.33905,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"the Charles River ","textAfter":" Dawley (Crl:","comments":null,"startOffset":622,"endOffset":629,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618601Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"22966af7fcb6e738b5fed5efbfff5936","type":"CBI_author","value":"Davies S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":686.8377,"y":249.93},"width":31.710327,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"252 litters (source: ","textAfter":" 2015) b","comments":null,"startOffset":328,"endOffset":337,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618601Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9928ea645201b4854499d9999f53cd54","type":"CBI_address","value":"Crl:","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":232.33318,"y":185.60999},"width":13.542419,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"Sprague Dawley (","textAfter":" CD[SD]) strain","comments":null,"startOffset":1095,"endOffset":1099,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618601Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"780aa37a24d8d8e8efd8a715d7eb6c1f","type":"CBI_author","value":"Manton","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":43.08,"y":194.72998},"width":25.883797,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"311 litters (source: ","textAfter":" 2016) e","comments":null,"startOffset":1028,"endOffset":1034,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618601Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e88d25a5140034cdbe75a53069a0c12b","type":"CBI_author","value":"Davies S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":73.92,"y":176.37},"width":31.688683,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"357 litters (sources: ","textAfter":" 2015 and","comments":null,"startOffset":1264,"endOffset":1273,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618601Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ac57f0189c6173fa9307cdc597a5561","type":"CBI_author","value":"Barnes ER.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":70.8,"y":231.57},"width":37.5418,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"823 litters (source: ","textAfter":" 2015) c","comments":null,"startOffset":567,"endOffset":577,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618601Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b66bd943f2bfeb6d10f16239ecc4aa0","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":122.902435,"y":203.97},"width":45.1718,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"HCD in the ","textAfter":" Sprague Dawley","comments":null,"startOffset":833,"endOffset":846,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618601Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64e5285d7c5d5b258a622d9aec633f0c","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":169.22,"y":203.97},"width":27.33905,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"the Charles River ","textAfter":" Dawley (Crl:","comments":null,"startOffset":847,"endOffset":854,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618601Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"35302f45d1166ba7100bb045d87ccc82","type":"PII","value":"11-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":482.82675,"y":329.63},"width":19.786957,"height":9.65418,"page":368}],"sectionNumber":4059,"textBefore":"20-71 (12.6-49.0%) L: ","textAfter":" (55-100%)","comments":null,"startOffset":187,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618601Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787106Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"76e705082c0108a00e6d8ed6452151cd","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":125.60089,"y":240.81},"width":45.638123,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"HCD in the ","textAfter":" Sprague Dawley","comments":null,"startOffset":368,"endOffset":381,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618602Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c22c0c349dc036e09e722cd59b25135","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":172.70728,"y":240.81},"width":27.33905,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"the Charles River ","textAfter":" Dawley (Crl:","comments":null,"startOffset":382,"endOffset":389,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618602Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"09bc19d5270a239808f683ba620cff02","type":"CBI_author","value":"Manton","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.2474,"y":176.37},"width":25.899918,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"S. 2015 and ","textAfter":" 2016)/ ǂ","comments":null,"startOffset":1283,"endOffset":1289,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618602Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"67118d1b38377461d8252903d1724ce7","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":173.35973,"y":185.60999},"width":27.33905,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"the Charles River ","textAfter":" Dawley (Crl:","comments":null,"startOffset":1079,"endOffset":1086,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618602Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"46147ede94e19ffe910af6bc02c60543","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":125.88349,"y":185.60999},"width":45.76676,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"HCD in the ","textAfter":" Sprague Dawley","comments":null,"startOffset":1065,"endOffset":1078,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618602Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6117cedc83b6d060a37eae556f6fa84a","type":"CBI_author","value":"Barnes ER.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":743.5,"y":222.33002},"width":23.182312,"height":9.65418,"page":368},{"topLeft":{"x":43.08,"y":213.21002},"width":13.325317,"height":9.65418,"page":368}],"sectionNumber":4066,"textBefore":"2608 litters (source: ","textAfter":" 2015) d","comments":null,"startOffset":792,"endOffset":802,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618602Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d6a38a0bf8d9442a883a0f9d49f8c5aa","type":"CBI_address","value":"Sequani Limited, Bromyard Road, Ledbury, Herefordshire, HR8 1LH, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":451.18,"y":595.58},"width":72.184204,"height":10.526819,"page":369},{"topLeft":{"x":133.82,"y":584.15},"width":289.5116,"height":10.526819,"page":369}],"sectionNumber":4064,"textBefore":"report amendment 2). ","textAfter":". Laboratory Report","comments":null,"startOffset":156,"endOffset":235,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618602Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"20afaf2418c3ca8c13aa1ff386d95d8d","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":267.58224,"y":493.43},"width":77.970825,"height":11.017679,"page":369}],"sectionNumber":4066,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2154,"endOffset":2171,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618602Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5992dd776a8dcb2cfd53d167c29bfa90","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":473.69913,"y":417.45},"width":27.26413,"height":11.017679,"page":369}],"sectionNumber":4067,"textBefore":null,"textAfter":null,"comments":null,"startOffset":110,"endOffset":116,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618602Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"538447fe41f23ac868959d72444792e0","type":"CBI_author","value":"Penn L.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":207.33609,"y":607.1},"width":37.54326,"height":10.526819,"page":369}],"sectionNumber":4064,"textBefore":"Report: K-CA 5.6.2/05 ","textAfter":" (2015a). SYN545974:","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618603Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1de052595cf06b61d8e2c3db78f2d6eb","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":291.06857,"y":572.63},"width":38.05127,"height":10.526819,"page":369}],"sectionNumber":4064,"textBefore":"June 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":295,"endOffset":303,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618603Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f12139c0f762d7e1bbd2cc261998ace4","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":473.5323,"y":753.5},"width":14.987701,"height":11.017679,"page":369}],"sectionNumber":4066,"textBefore":"gavage, to pregnant ","textAfter":":CD (SD) rats","comments":null,"startOffset":1484,"endOffset":1487,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618603Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1ba58b8a4a8f44a589ef098c33e5121","type":"CBI_author","value":"Davies S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":461.02002,"y":671.66},"width":40.483337,"height":11.017679,"page":369}],"sectionNumber":4066,"textBefore":"100 mg/kg/day. (","textAfter":", 2015) Guidelines:","comments":null,"startOffset":1866,"endOffset":1874,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618603Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b8679da6f8ba0fe802b20561254640d2","type":"CBI_address","value":"Harlan (Italy) Limited, Mucedola s.r.l., Via g.galilei 4, 20019 Settimo Milanese, Italy","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":277.29196,"y":318.09003},"width":222.00427,"height":10.0905,"page":370},{"topLeft":{"x":211.61,"y":307.76996},"width":85.21303,"height":10.0905,"page":370}],"sectionNumber":4069,"textBefore":"Italy) supplied by ","textAfter":", ad libitum","comments":null,"startOffset":474,"endOffset":561,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618603Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0fed386fde2497b9495631f67f9342d1","type":"PII","value":"51-85","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.81999,"y":259.76996},"width":22.08702,"height":10.0905,"page":370}],"sectionNumber":4069,"textBefore":"Temperature: 16-20°C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":663,"endOffset":668,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618603Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787107Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4390a52e1443944374754f4b29212b9f","type":"CBI_address","value":"Harlan Teklad","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":260.87604,"y":328.53},"width":52.593964,"height":10.0905,"page":370}],"sectionNumber":4069,"textBefore":"Pelleted diet, ","textAfter":" 2930C Rabbit","comments":null,"startOffset":391,"endOffset":404,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618604Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"767434cf2fb20b3879e46f3aae82e527","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":375.24448,"y":134.82},"width":36.350067,"height":11.017679,"page":370}],"sectionNumber":4070,"textBefore":"were delivered to ","textAfter":" by Day","comments":null,"startOffset":615,"endOffset":622,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618604Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d9de35a9eafb43d4ddcc3595a13cbaff","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":527.63},"width":28.467995,"height":10.018499,"page":370}],"sectionNumber":4068,"textBefore":null,"textAfter":null,"comments":null,"startOffset":186,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618604Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de051c036187e0b1f271d50ae9fec1b5","type":"CBI_address","value":"Harlan Teklad, Italy","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.85397,"y":328.53},"width":54.92804,"height":10.0905,"page":370},{"topLeft":{"x":211.61,"y":318.09003},"width":17.496994,"height":10.0905,"page":370}],"sectionNumber":4069,"textBefore":"Diet (manufactured by ","textAfter":") supplied by","comments":null,"startOffset":440,"endOffset":460,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618604Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b0db8a10bc6f0096d6408c221704587","type":"PII","value":"10 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.57,"y":667.7},"width":10.059998,"height":10.0905,"page":371},{"topLeft":{"x":350.83,"y":667.7},"width":14.619995,"height":10.0905,"page":371}],"sectionNumber":4074,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618604Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787109Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"69bba7d8187b41aa11cc975c34b3c289","type":"PII","value":"10 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.57,"y":647.66},"width":10.059998,"height":10.0905,"page":371},{"topLeft":{"x":348.55,"y":647.66},"width":19.044983,"height":10.0905,"page":371}],"sectionNumber":4075,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618604Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787109Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4cb6e33fe937f6b1d6e038cf50e0700d","type":"PII","value":"10 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.57,"y":607.7},"width":10.059998,"height":10.0905,"page":371},{"topLeft":{"x":348.55,"y":607.7},"width":19.044983,"height":10.0905,"page":371}],"sectionNumber":4077,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618604Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787109Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"af7e193297bd170bc65e7852c1e77b62","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Animal numbers and treatment groups","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":317.86942,"y":499.19},"width":36.350067,"height":11.017679,"page":371}],"sectionNumber":4079,"textBefore":"study performed at ","textAfter":". Dose preparation","comments":null,"startOffset":552,"endOffset":559,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618604Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"62777dd4a6bfd1e18e69d6ea39802114","type":"PII","value":"10 250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.57,"y":687.74},"width":10.059998,"height":10.0905,"page":371},{"topLeft":{"x":350.83,"y":687.74},"width":14.619995,"height":10.0905,"page":371}],"sectionNumber":4073,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618604Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787109Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cf7c39b92334ecf32742bab2f1f270e6","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":64.84003},"width":28.566887,"height":10.929359,"page":373}],"sectionNumber":4110,"textBefore":"Sacrifice and pathology: ","textAfter":" pathology: There","comments":null,"startOffset":25,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618605Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dbe8cdc7b39114e93e035ccaa861bc70","type":"PII","value":"250 500 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-8: Intergroup comparison of body weight change (g) – selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.01,"y":326.25},"width":14.619995,"height":10.018499,"page":373},{"topLeft":{"x":284.21,"y":326.25},"width":14.619995,"height":10.018499,"page":373},{"topLeft":{"x":352.27,"y":326.25},"width":19.044983,"height":10.018499,"page":373}],"sectionNumber":4081,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618605Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78711Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f3bec013698aa9b176d5c5f6c0c014e4","type":"hint_only","value":"study director","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Sacrifice and pathology:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":351.49982,"y":639.62},"width":62.835052,"height":11.017679,"page":374}],"sectionNumber":4110,"textBefore":null,"textAfter":null,"comments":null,"startOffset":901,"endOffset":915,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618605Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e13af21970e512c298d8be4dbf705cbc","type":"PII","value":"1000 75","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Summary of major fetal abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":94.704,"y":116.46002},"width":19.044998,"height":10.0905,"page":375},{"topLeft":{"x":155.78,"y":116.46002},"width":10.059998,"height":10.0905,"page":375}],"sectionNumber":4118,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618605Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78711Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"87a8a181f31c2a147587dec5c7e98e70","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-9: Caesarean section observations for all pregnant females","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.28534,"y":398.73},"width":27.33905,"height":9.65418,"page":375}],"sectionNumber":4108,"textBefore":"the Charles River ","textAfter":" Dawley (Crl:","comments":null,"startOffset":192,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618605Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dfa88f30dfa7da08539ca836ac626016","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.6.2-9: Caesarean section observations for all pregnant females","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":186.11963,"y":398.73},"width":45.1718,"height":9.65418,"page":375}],"sectionNumber":4108,"textBefore":"HCD in the ","textAfter":" Sprague Dawley","comments":null,"startOffset":178,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618605Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce82e37b03f90bbd6aa20b63501f8c28","type":"CBI_address","value":"Crl:","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.6.2-9: Caesarean section observations for all pregnant females","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":289.82755,"y":398.73},"width":13.542358,"height":9.65418,"page":375}],"sectionNumber":4108,"textBefore":"Sprague Dawley (","textAfter":" CD[SD]) strain):","comments":null,"startOffset":208,"endOffset":212,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618606Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"26a2c735b4c502188ee2546bf76be711","type":"PII","value":"(60-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-9: Caesarean section observations for all pregnant females","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":490.28607,"y":667.82},"width":26.281372,"height":9.65418,"page":375}],"sectionNumber":4090,"textBefore":"88 ","textAfter":null,"comments":null,"startOffset":51,"endOffset":58,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618606Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787111Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4a36195abd3f9e5fd34efea2e88de6c9","type":"PII","value":"250 500 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-9: Caesarean section observations for all pregnant females","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":259.61,"y":722.54},"width":13.051941,"height":9.58986,"page":375},{"topLeft":{"x":306.29,"y":722.54},"width":13.051941,"height":9.58986,"page":375},{"topLeft":{"x":351.07,"y":722.54},"width":17.015656,"height":9.58986,"page":375}],"sectionNumber":4086,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618606Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787111Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9c5c61c9f13f7649fade6acc39b080f1","type":"PII","value":"(142-356","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-9: Caesarean section observations for all pregnant females","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":493.40393,"y":517.19},"width":30.228027,"height":9.65418,"page":375}],"sectionNumber":4101,"textBefore":"288.3 ","textAfter":null,"comments":null,"startOffset":65,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618606Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787111Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2c823c07fd514d75653a56e0e21fa8e9","type":"PII","value":"250 53","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Summary of major fetal abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":96.864,"y":138.18},"width":14.619995,"height":10.0905,"page":375},{"topLeft":{"x":155.78,"y":138.18},"width":10.059998,"height":10.0905,"page":375}],"sectionNumber":4116,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618606Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787111Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e26babd2e2bf0ed0df5d0b209f20fc97","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":125.762375,"y":423.35},"width":27.26416,"height":11.017679,"page":376}],"sectionNumber":4123,"textBefore":null,"textAfter":null,"comments":null,"startOffset":229,"endOffset":235,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618606Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b26ba95eb8b566d63bddc2b8294f8d52","type":"CBI_address","value":"Sequani Limited, Bromyard Road, Ledbury, Herefordshire, HR8 1LH, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Summary of major fetal abnormalities","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":216.29,"y":625.58},"width":282.84845,"height":10.526819,"page":376},{"topLeft":{"x":133.82,"y":614.18},"width":68.45906,"height":10.526819,"page":376}],"sectionNumber":4120,"textBefore":"in the Rabbit. ","textAfter":". Laboratory Report","comments":null,"startOffset":117,"endOffset":196,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618607Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"621a748a8ab4432685579ea0816ba976","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Summary of major fetal abnormalities","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":457.5086,"y":614.18},"width":38.04129,"height":10.526819,"page":376}],"sectionNumber":4120,"textBefore":"May 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":255,"endOffset":263,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618607Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f565b8b570ec3d12906c319915d8143b","type":"CBI_author","value":"Penn L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Summary of major fetal abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":464.12946,"y":677.66},"width":32.58545,"height":11.017679,"page":376}],"sectionNumber":4122,"textBefore":"1000 mg/kg/day. (","textAfter":", 2015a) Guidelines:","comments":null,"startOffset":570,"endOffset":576,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618607Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"166d8f925bfcc94e25a6c62951873538","type":"CBI_author","value":"Penn L.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Summary of major fetal abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.07887,"y":637.1},"width":31.905884,"height":10.526819,"page":376}],"sectionNumber":4120,"textBefore":"Report: K-CA 5.6.2/06 ","textAfter":" (2015b). SYN545974:","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618607Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ec47941ea80e2e9f10af6317420fca3","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Summary of major fetal abnormalities","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":537.23},"width":82.53038,"height":11.017679,"page":376}],"sectionNumber":4122,"textBefore":null,"textAfter":null,"comments":null,"startOffset":724,"endOffset":741,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618607Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0dc3bed603b40bc103d75735372cc494","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":550.55},"width":28.468002,"height":10.018499,"page":377}],"sectionNumber":4125,"textBefore":null,"textAfter":null,"comments":null,"startOffset":96,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618607Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ddf524a7b3a66f2d11d66731037c3f2f","type":"CBI_address","value":"Harlan Teklad","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":260.87604,"y":360.93},"width":52.534058,"height":10.0905,"page":377}],"sectionNumber":4126,"textBefore":"Pelleted diet, ","textAfter":" 2930C Rabbit","comments":null,"startOffset":362,"endOffset":375,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618607Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99c4902febb3b492176b8bd503a39f25","type":"CBI_address","value":"Harlan (UK) Limited, Shaw's Farm, Blackthorn, Bicester, Oxon, OX25","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":277.29196,"y":350.49},"width":233.34415,"height":10.0905,"page":377},{"topLeft":{"x":211.61,"y":340.17},"width":23.005005,"height":10.0905,"page":377}],"sectionNumber":4126,"textBefore":"Italy) supplied by ","textAfter":" 1TP ad","comments":null,"startOffset":445,"endOffset":511,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618608Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e59342914f23aa9fe13bea5c4bbfea67","type":"CBI_address","value":"Harlan Teklad, Italy","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.7761,"y":360.93},"width":54.92804,"height":10.0905,"page":377},{"topLeft":{"x":211.61,"y":350.49},"width":17.496994,"height":10.0905,"page":377}],"sectionNumber":4126,"textBefore":"Diet (manufactured by ","textAfter":") supplied by","comments":null,"startOffset":411,"endOffset":431,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618608Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9543588f6b54ed13112c0fb5756f92d7","type":"PII","value":"33-83","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.814,"y":303.09003},"width":22.093018,"height":10.0905,"page":377}],"sectionNumber":4126,"textBefore":"Temperature: 17-21°C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":616,"endOffset":621,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618608Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787113Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e99c66cc466acddeb63d4d309f440779","type":"PII","value":"24 100 20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.57,"y":669.74},"width":10.059998,"height":10.0905,"page":378},{"topLeft":{"x":350.83,"y":669.74},"width":14.619995,"height":10.0905,"page":378},{"topLeft":{"x":470.02,"y":669.74},"width":10.059998,"height":10.0905,"page":378}],"sectionNumber":4131,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618608Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787114Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"33e6872f68bb8efbae45a842c71fcd62","type":"PII","value":"24 500 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.57,"y":649.7},"width":10.059998,"height":10.0905,"page":378},{"topLeft":{"x":350.83,"y":649.7},"width":14.619995,"height":10.0905,"page":378},{"topLeft":{"x":467.74,"y":649.7},"width":14.619995,"height":10.0905,"page":378}],"sectionNumber":4132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618608Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787114Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"af8ddcd524deab6757c816abfa7b529d","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Animal numbers and treatment groups","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":197.688,"y":604.46},"width":36.350098,"height":11.017679,"page":378}],"sectionNumber":4134,"textBefore":"studies performed at ","textAfter":". Statistical analysis","comments":null,"startOffset":167,"endOffset":174,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618608Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2027468b529ece4d14d3920b6d8d2c8","type":"CBI_author","value":"Penn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":196.85999},"width":23.079994,"height":11.017679,"page":380}],"sectionNumber":4142,"textBefore":"6.6.2-10). In the ","textAfter":" (2014) study,","comments":null,"startOffset":610,"endOffset":614,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618609Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a11a607643d165e47022f0f6f80051ab","type":"CBI_author","value":"Armitage","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.34,"y":374.01},"width":42.477295,"height":11.017679,"page":380}],"sectionNumber":4134,"textBefore":"of the Cochran-","textAfter":" Test. The","comments":null,"startOffset":9477,"endOffset":9485,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618609Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"33b162f8b1dd3ca6125a8f1e0f6c92a0","type":"CBI_author","value":"Penn L.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":134.18,"y":247.5},"width":40.25824,"height":11.017679,"page":380}],"sectionNumber":4142,"textBefore":"K- CA 5.1.1/09: ","textAfter":", (2014); section","comments":null,"startOffset":225,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618609Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a48569969cf63f889de431286ca5fd7","type":"CBI_author","value":"Cochran","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":92.50991,"y":374.01},"width":38.29313,"height":11.017679,"page":380}],"sectionNumber":4134,"textBefore":"version of the ","textAfter":"-Armitage Test. The","comments":null,"startOffset":9469,"endOffset":9476,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618609Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5578b2448ea577495e7061af084cd5f2","type":"PII","value":"10 100 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-11: Intergroup comparison of body weight change (g) – selected timepoints","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":216.17,"y":212.58002},"width":10.059998,"height":10.018499,"page":381},{"topLeft":{"x":284.09,"y":212.58002},"width":14.619995,"height":10.018499,"page":381},{"topLeft":{"x":353.59,"y":212.58002},"width":14.619995,"height":10.018499,"page":381}],"sectionNumber":4144,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618609Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787115Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7e888ace27020eab15bf37e02f759797","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":441.0},"width":190.0,"height":115.0,"page":381}],"sectionNumber":4142,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618609Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fb30bb261f34c6fc49b111a066ff7653","type":"PII","value":"51 271","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-12: Caesarean section observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":436.24298,"y":360.81},"width":9.937012,"height":10.0905,"page":382},{"topLeft":{"x":486.22,"y":360.81},"width":14.607971,"height":10.0905,"page":382}],"sectionNumber":4162,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618609Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787115Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"154ee28a8e493e76776cd6f2283ff117","type":"PII","value":"41 259","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-12: Caesarean section observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.483,"y":360.81},"width":9.937012,"height":10.0905,"page":382},{"topLeft":{"x":420.43,"y":360.81},"width":14.607971,"height":10.0905,"page":382}],"sectionNumber":4162,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61861Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787115Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5dcdb33f25280a1545531be7add6d10d","type":"PII","value":"75 302","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-12: Caesarean section observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":301.223,"y":360.81},"width":9.937012,"height":10.0905,"page":382},{"topLeft":{"x":354.67,"y":360.81},"width":14.607971,"height":10.0905,"page":382}],"sectionNumber":4162,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61861Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787115Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dfd0ce768f22d3955a2bd9eb879d85d2","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Maternal toxicity:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":715.58},"width":28.566887,"height":10.929359,"page":382}],"sectionNumber":4217,"textBefore":"Sacrifice and pathology: ","textAfter":" pathology: There","comments":null,"startOffset":925,"endOffset":930,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61861Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"905243c29b095443c5423dc30163667e","type":"PII","value":"10 100 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-12: Caesarean section observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":362.59,"y":568.43},"width":10.059998,"height":10.018499,"page":382},{"topLeft":{"x":426.07,"y":568.43},"width":14.619995,"height":10.018499,"page":382},{"topLeft":{"x":491.74,"y":568.43},"width":14.619995,"height":10.018499,"page":382}],"sectionNumber":4148,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61861Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787115Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"14c266a61315e8d87ed710ae3f2b6e5a","type":"PII","value":"10 100 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-14a: Diaphragmatic hernia","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":293.45,"y":406.29},"width":10.059998,"height":10.018499,"page":383},{"topLeft":{"x":361.99,"y":406.29},"width":14.619995,"height":10.018499,"page":383},{"topLeft":{"x":433.03,"y":406.29},"width":14.619995,"height":10.018499,"page":383}],"sectionNumber":4188,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61861Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787116Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f65ffa090350cb5e1c7ffd495d93a8a6","type":"PII","value":"500 76","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-13: Summary of major fetal abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.184,"y":469.67},"width":14.619995,"height":10.018499,"page":383},{"topLeft":{"x":137.9,"y":469.91},"width":10.059998,"height":10.0905,"page":383}],"sectionNumber":4184,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61861Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787116Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"287c4cf05452bbad1c66e059c2d3b186","type":"hint_only","value":"study director","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Maternal toxicity:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":507.82,"y":148.73999},"width":24.86853,"height":11.017679,"page":383},{"topLeft":{"x":64.104,"y":136.14001},"width":35.246086,"height":11.017679,"page":383}],"sectionNumber":4217,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3382,"endOffset":3396,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61861Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb772f3d4a0b6311c6353b9a2234cbef","type":"PII","value":"100 61","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-13: Summary of major fetal abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.184,"y":545.27},"width":14.619995,"height":10.018499,"page":383},{"topLeft":{"x":137.9,"y":545.51},"width":10.059998,"height":10.0905,"page":383}],"sectionNumber":4181,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61861Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787116Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a0139752e755d6abc9e585d7f04d381c","type":"PII","value":"163 142 132 154","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-14a: Diaphragmatic hernia","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":220.25,"y":384.93},"width":14.619995,"height":10.095,"page":383},{"topLeft":{"x":291.17,"y":384.93},"width":14.619995,"height":10.095,"page":383},{"topLeft":{"x":361.99,"y":384.93},"width":14.619995,"height":10.095,"page":383},{"topLeft":{"x":433.03,"y":384.93},"width":14.619995,"height":10.095,"page":383}],"sectionNumber":4190,"textBefore":null,"textAfter":null,"comments":null,"startOffset":20,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61861Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787117Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a3e7a0db0867218a82a7453807ce5029","type":"PII","value":"163 142 132 154","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-15: Summary of overall incidences of major, minor and variant fetal abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":220.25,"y":722.3},"width":14.619995,"height":10.095,"page":384},{"topLeft":{"x":291.17,"y":722.3},"width":14.619995,"height":10.095,"page":384},{"topLeft":{"x":361.99,"y":722.3},"width":14.619995,"height":10.095,"page":384},{"topLeft":{"x":433.03,"y":722.3},"width":14.619995,"height":10.095,"page":384}],"sectionNumber":4202,"textBefore":null,"textAfter":null,"comments":null,"startOffset":20,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618611Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787117Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a08b2c6c8c809b1f91f69e24b913040d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Maternal toxicity:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":214.83461,"y":298.52997},"width":38.051224,"height":10.526819,"page":384}],"sectionNumber":4215,"textBefore":"July 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":297,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618611Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f8f71cdd2ccaed607364a0a2c4256ca","type":"PII","value":"10 100 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-16: skeletal variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":293.45,"y":590.9},"width":10.059998,"height":10.018499,"page":384},{"topLeft":{"x":361.99,"y":590.9},"width":14.619995,"height":10.018499,"page":384},{"topLeft":{"x":433.03,"y":590.9},"width":14.619995,"height":10.018499,"page":384}],"sectionNumber":4209,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618611Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787117Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dc566b790b7a33fe6c9962a5e9799a11","type":"CBI_author","value":"Penn L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Maternal toxicity:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":463.52945,"y":398.13},"width":32.58545,"height":11.017679,"page":384}],"sectionNumber":4217,"textBefore":"10 mg/kg/day. (","textAfter":", 2015b) Guidelines:","comments":null,"startOffset":4677,"endOffset":4683,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618611Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51c7a6fc45e087a01f19f2fd4900bf57","type":"CBI_author","value":"Barnes E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Maternal toxicity:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.77,"y":333.09},"width":41.128845,"height":10.526819,"page":384}],"sectionNumber":4215,"textBefore":"Report: K-CA 5.6.2/07 ","textAfter":" (2015). SYN545974:","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618611Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"779a7e193152e41d75e00c04dd31591d","type":"CBI_author","value":"Davies","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":337.23367,"y":106.140015},"width":31.547668,"height":11.017679,"page":384}],"sectionNumber":4218,"textBefore":"as reported in ","textAfter":" (2015) (two","comments":null,"startOffset":405,"endOffset":411,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618611Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15b8c4e6f7e3efddb71528dab884d93f","type":"PII","value":"10 100 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-15: Summary of overall incidences of major, minor and variant fetal abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":293.45,"y":743.78},"width":10.059998,"height":10.018499,"page":384},{"topLeft":{"x":361.99,"y":743.78},"width":14.619995,"height":10.018499,"page":384},{"topLeft":{"x":433.03,"y":743.78},"width":14.619995,"height":10.018499,"page":384}],"sectionNumber":4200,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618611Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787118Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e416d1ce6144e3e97efc5f1d2985c232","type":"CBI_address","value":"Charles River Breeders","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":497.35776,"y":156.06},"width":34.78232,"height":11.017679,"page":384},{"topLeft":{"x":64.104,"y":143.46002},"width":67.30624,"height":11.017679,"page":384}],"sectionNumber":4218,"textBefore":"same strain from ","textAfter":". A small","comments":null,"startOffset":219,"endOffset":241,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618611Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99155028dcbd7323d8035940267516aa","type":"CBI_address","value":"Syngenta Ltd., Jealott’s Hill International Research Centre, Bracknell, Berkshire, RG42 6EY, UK.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Maternal toxicity:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":313.53476,"y":321.57},"width":209.39334,"height":10.526819,"page":384},{"topLeft":{"x":133.82,"y":310.05},"width":197.69019,"height":10.526819,"page":384}],"sectionNumber":4215,"textBefore":"in the Rat. ","textAfter":" Laboratory Report","comments":null,"startOffset":140,"endOffset":236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618612Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c2675bdcaa108dcde8c9a12d2d45f8f0","type":"PII","value":"163 142 132 154","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.6.2-16: skeletal variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":220.25,"y":569.39},"width":14.619995,"height":10.095,"page":384},{"topLeft":{"x":291.17,"y":569.39},"width":14.619995,"height":10.095,"page":384},{"topLeft":{"x":361.99,"y":569.39},"width":14.619995,"height":10.095,"page":384},{"topLeft":{"x":433.03,"y":569.39},"width":14.619995,"height":10.095,"page":384}],"sectionNumber":4211,"textBefore":null,"textAfter":null,"comments":null,"startOffset":20,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618612Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787118Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1178853671418e6c4407d6cca2553fc7","type":"CBI_address","value":"Crl:","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":275.87354,"y":630.14},"width":18.718872,"height":10.44714,"page":385}],"sectionNumber":4226,"textBefore":"HCD data in ","textAfter":" CD [SD]","comments":null,"startOffset":664,"endOffset":668,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618612Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac2825cc9a58d7fc610b4cebad7034bb","type":"CBI_author","value":"Davies","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":141.40356,"y":630.14},"width":29.20671,"height":10.44714,"page":385}],"sectionNumber":4226,"textBefore":"with SYN545974 (","textAfter":", 2015) and","comments":null,"startOffset":634,"endOffset":640,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618612Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f5baccb8798dc3f30f6246651081bc4","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":456.89624,"y":740.66},"width":28.566833,"height":10.929359,"page":385}],"sectionNumber":4226,"textBefore":"with HCD: Fetal ","textAfter":" External Malformations","comments":null,"startOffset":77,"endOffset":82,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618612Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f76ba011ceb68c37122293eaa5c3e3d7","type":"CBI_address","value":"Crl:","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":268.90704,"y":740.66},"width":20.50769,"height":10.929359,"page":385}],"sectionNumber":4226,"textBefore":"Malformations in the ","textAfter":" CD[SD] Rat","comments":null,"startOffset":45,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618612Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a74bb5b06a5ec4fcaa4a4fd9f44bcfad","type":"CBI_author","value":"Davies","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Fetal Skeletal Malformations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":413.13},"width":31.547684,"height":11.017679,"page":385}],"sectionNumber":4227,"textBefore":"as reported in ","textAfter":" (2015) (two","comments":null,"startOffset":127,"endOffset":133,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618612Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c611c61540cf52a63ebebbdbc6c2c7be","type":"CBI_author","value":"Davies","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":75.96095,"y":690.86},"width":31.448334,"height":11.017679,"page":385}],"sectionNumber":4226,"textBefore":"as reported in ","textAfter":" (2015) (two","comments":null,"startOffset":210,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618612Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d68cfe882179105b1892272cf0115ba0","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.6.2-17: A comparison of fetal gross external malformations from the rat developmental toxicity study\nwith SYN545974 (Davies, 2015) and HCD data in Crl: CD [SD] rats","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":298.73,"y":602.66},"width":31.924011,"height":10.018499,"page":385}],"sectionNumber":4219,"textBefore":null,"textAfter":" HCD","comments":null,"startOffset":49,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618612Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8083adc6a076d455764479893e2cdc08","type":"CBI_author","value":"Davies","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"SYN545974 (Davies, 2015) and HCD data in Crl: CD [SD] rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.1307,"y":312.81},"width":31.547668,"height":11.017679,"page":386}],"sectionNumber":4243,"textBefore":"as reported in ","textAfter":" (2015) (two","comments":null,"startOffset":251,"endOffset":257,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618613Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8ca88501692ce244c07cc71dde2c4f0e","type":"CBI_author","value":"Barnes E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"SYN545974 (Davies, 2015) and HCD data in Crl: CD [SD] rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.40945,"y":236.94},"width":41.086273,"height":11.017679,"page":386}],"sectionNumber":4243,"textBefore":"of rat. (","textAfter":", 2015)","comments":null,"startOffset":676,"endOffset":684,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618613Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"37c6389e0f2660b68d3bc02bdfe34629","type":"CBI_address","value":"Sequani","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: SYN545974 (Davies, 2015) and HCD data in Crl: CD [SD] rats","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":298.97,"y":715.22},"width":31.924011,"height":10.018499,"page":386}],"sectionNumber":4228,"textBefore":null,"textAfter":" HCD","comments":null,"startOffset":49,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618613Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"71b8ae32a417ad28c630f1085a17c84c","type":"CBI_address","value":"Crl:","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"SYN545974 (Davies, 2015) and HCD data in Crl: CD [SD] rats","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":254.42963,"y":742.7},"width":18.718872,"height":10.44714,"page":386}],"sectionNumber":4243,"textBefore":"HCD data in ","textAfter":" CD [SD]","comments":null,"startOffset":41,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618613Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"17f4b54066bc116333d636df461d9a4a","type":"CBI_author","value":"Davies","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"SYN545974 (Davies, 2015) and HCD data in Crl: CD [SD] rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":119.94971,"y":742.7},"width":29.326218,"height":10.44714,"page":386}],"sectionNumber":4243,"textBefore":"SYN545974 (","textAfter":", 2015) and","comments":null,"startOffset":11,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618613Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4faf35bfabf32de034379709423a789e","type":"PII","value":"1322-1174","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.7. NEUROTOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":427.30417,"y":728.18},"width":48.875793,"height":11.017679,"page":387}],"sectionNumber":4248,"textBefore":"(16000ppm equivalent to ","textAfter":" mg/kg bw/d","comments":null,"startOffset":862,"endOffset":871,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618613Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787119Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"56433a02d06c1dd69118d626e61dfcd2","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.39148,"y":527.51},"width":19.337433,"height":11.017679,"page":388}],"sectionNumber":4252,"textBefore":"oral (gavage) dose. ","textAfter":"-Wistar rats in","comments":null,"startOffset":162,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618614Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"17eac28815984fb30eb82b6be4ac29a3","type":"CBI_author","value":"Broich K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.7.1. Neurotoxicity studies in rodents","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.99612,"y":679.22},"width":41.248352,"height":10.526819,"page":388}],"sectionNumber":4249,"textBefore":"Report: K-CA 5.7.1/01 ","textAfter":" (2015). SYN545974","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618614Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"31c3cfa1dca0e045c60f336bcb99cedb","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.7.1. Neurotoxicity studies in rodents","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":590.78},"width":82.53038,"height":11.017679,"page":388}],"sectionNumber":4251,"textBefore":null,"textAfter":null,"comments":null,"startOffset":154,"endOffset":171,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618614Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24529a9d7d0150267502498c796c9472","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.7.1. Neurotoxicity studies in rodents","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":465.2592,"y":656.18},"width":38.270386,"height":10.526819,"page":388}],"sectionNumber":4249,"textBefore":"September 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":252,"endOffset":260,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618614Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b51ade22647085b45a421e5f67e1d77a","type":"CBI_address","value":"Harlan Laboratories Ltd, Itingen, Switzerland.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.7.1. Neurotoxicity studies in rodents","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":320.02225,"y":667.7},"width":202.95908,"height":10.526819,"page":388}],"sectionNumber":4249,"textBefore":"Report Amendment 1. ","textAfter":" Laboratory Report","comments":null,"startOffset":131,"endOffset":177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618614Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"39e941166944aa75328dc551f0d77cfd","type":"PII","value":"100 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Group identification and animal numbers","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.59,"y":167.46002},"width":14.619995,"height":10.0905,"page":389},{"topLeft":{"x":487.66,"y":167.46002},"width":14.619995,"height":10.0905,"page":389}],"sectionNumber":4261,"textBefore":null,"textAfter":null,"comments":null,"startOffset":52,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618614Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787121Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bcd5a32d509b93062704bca5bba34d2d","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":311.79807,"y":503.99},"width":34.40796,"height":10.0905,"page":389}],"sectionNumber":4254,"textBefore":"KG, 73494 Rosenberg, ","textAfter":", imported by","comments":null,"startOffset":348,"endOffset":355,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618615Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cc4077600b209be7c3c2950e9aa15ffc","type":"CBI_author","value":"Rosenberg","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.877,"y":503.99},"width":39.439026,"height":10.0905,"page":389}],"sectionNumber":4254,"textBefore":"Co. KG, 73494 ","textAfter":", Germany, imported","comments":null,"startOffset":337,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618615Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"73162db7c3fccc88d50705141a189689","type":"CBI_address","value":"Harlan Teklad","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":275.62698,"y":435.95},"width":52.534058,"height":10.0905,"page":389}],"sectionNumber":4254,"textBefore":"Pelleted standard ","textAfter":" 2914C rodent","comments":null,"startOffset":677,"endOffset":690,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618615Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b4d943db956f143416ce104147cc7ced","type":"PII","value":"1000 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Group identification and animal numbers","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":408.31,"y":210.53998},"width":19.044983,"height":10.0905,"page":389},{"topLeft":{"x":485.5,"y":210.53998},"width":19.044983,"height":10.0905,"page":389}],"sectionNumber":4259,"textBefore":null,"textAfter":null,"comments":null,"startOffset":46,"endOffset":55,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618615Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787121Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed6dbe851bedef0fee728f8cc5525e6f","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":677.06},"width":28.467995,"height":10.018499,"page":389}],"sectionNumber":4253,"textBefore":null,"textAfter":null,"comments":null,"startOffset":107,"endOffset":114,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618615Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3ff31eb83220950f4a272b25e733f9e7","type":"PII","value":"53 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.7.1-1: Cage-side observations noted for females on day 1 at unscheduled intervals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.504,"y":64.96002},"width":10.059998,"height":10.0905,"page":390},{"topLeft":{"x":153.74,"y":64.96002},"width":14.619995,"height":10.0905,"page":390}],"sectionNumber":4267,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618615Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787121Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a85045eb65c300ace73d9571560f908c","type":"CBI_author","value":"Square","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Group identification and animal numbers","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":408.24286,"y":563.75},"width":31.569763,"height":11.017679,"page":390}],"sectionNumber":4265,"textBefore":"with standard deviations. ","textAfter":" root transformations","comments":null,"startOffset":1717,"endOffset":1723,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618615Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5a209041fc4bd209c4e50c092d5a428d","type":"PII","value":"61 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.7.1-1: Cage-side observations noted for females on day 1 at unscheduled intervals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.504,"y":715.1},"width":10.059998,"height":10.0905,"page":391},{"topLeft":{"x":151.58,"y":715.1},"width":19.044998,"height":10.0905,"page":391}],"sectionNumber":4271,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618616Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787122Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f2e4417db0fd96b176cfac34fca93e2d","type":"PII","value":"65 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.7.1-1: Cage-side observations noted for females on day 1 at unscheduled intervals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.504,"y":682.46},"width":10.059998,"height":10.0905,"page":391},{"topLeft":{"x":151.46,"y":682.46},"width":19.044998,"height":10.0905,"page":391}],"sectionNumber":4272,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618616Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787122Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a23c21d31c1f3c7a913887b0b9b3f47b","type":"PII","value":"75 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.7.1-1: Cage-side observations noted for females on day 1 at unscheduled intervals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.504,"y":647.54},"width":10.059998,"height":10.0905,"page":391},{"topLeft":{"x":151.58,"y":647.54},"width":19.044998,"height":10.0905,"page":391}],"sectionNumber":4274,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618616Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787122Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"30a7374de1161f622aa4a1d9afc073dc","type":"PII","value":"74 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.7.1-1: Cage-side observations noted for females on day 1 at unscheduled intervals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.504,"y":662.42},"width":10.059998,"height":10.0905,"page":391},{"topLeft":{"x":151.58,"y":662.42},"width":19.044998,"height":10.0905,"page":391}],"sectionNumber":4273,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618616Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787122Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"427bd91c0e1e01d0e806637a72ba076c","type":"PII","value":"100 1000 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.7.1-4: Mean LMA parameters obtained over a 30 minute session at 6 hours post dose on day 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":338.23,"y":720.26},"width":14.619995,"height":10.018499,"page":393},{"topLeft":{"x":413.35,"y":720.26},"width":19.044983,"height":10.018499,"page":393},{"topLeft":{"x":487.9,"y":720.26},"width":19.044983,"height":10.018499,"page":393}],"sectionNumber":4297,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618616Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787123Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e81568dd7aaf26ce79df80ec71236d1e","type":"PII","value":"129 82 101 34","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.7.1-4: Mean LMA parameters obtained over a 30 minute session at 6 hours post dose on day 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":260.93,"y":661.1},"width":14.619995,"height":10.0905,"page":393},{"topLeft":{"x":342.79,"y":661.1},"width":10.059998,"height":10.0905,"page":393},{"topLeft":{"x":415.51,"y":661.1},"width":14.619995,"height":10.0905,"page":393},{"topLeft":{"x":494.74,"y":661.1},"width":10.059998,"height":10.0905,"page":393}],"sectionNumber":4301,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618616Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787123Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"15ecaa7f713a10e020133a0eca0fc750","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Functional observational battery (FOB):","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":192.08478,"y":229.73999},"width":19.337448,"height":11.017679,"page":393}],"sectionNumber":4309,"textBefore":"In this study, ","textAfter":"-Wistar rats of","comments":null,"startOffset":6624,"endOffset":6627,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618616Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7d9dec6e64b2c58682267b5940d2b8de","type":"CBI_author","value":"Broich K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Functional observational battery (FOB):","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":459.68945,"y":196.85999},"width":41.605103,"height":11.017679,"page":394}],"sectionNumber":4309,"textBefore":"for females. (","textAfter":", 2015) Guidelines:","comments":null,"startOffset":10846,"endOffset":10854,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618617Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a69775251e22203e205ff66d9eb7ae1c","type":"CBI_author","value":"Broich K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Functional observational battery (FOB):","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":202.25,"y":110.34003},"width":43.51924,"height":10.526819,"page":394}],"sectionNumber":4307,"textBefore":"Report: K-CA 5.7.1/02 ","textAfter":" (2015a). SYN545974","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618617Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ea1432217becc4879df7ad2d5e62fbe","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Functional observational battery (FOB):","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":192.41,"y":75.880005},"width":38.160767,"height":10.526819,"page":394}],"sectionNumber":4307,"textBefore":"September 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":275,"endOffset":283,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618617Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ab58105f29421778f1dc705a5430fff","type":"CBI_address","value":"Harlan Laboratories Ltd, Itingen, Switzerland.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Functional observational battery (FOB):","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.73013,"y":98.94},"width":101.53635,"height":10.526819,"page":394},{"topLeft":{"x":133.82,"y":87.42401},"width":88.369095,"height":10.526819,"page":394}],"sectionNumber":4307,"textBefore":"Report Amendment 1. ","textAfter":" Laboratory Report","comments":null,"startOffset":154,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618617Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d2004af2b12d3ff0d40c04ad5b73f6d","type":"CBI_author","value":"Broich K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":501.39835,"y":652.34},"width":30.852203,"height":11.017679,"page":395},{"topLeft":{"x":64.104,"y":639.62},"width":8.970879,"height":11.017679,"page":395}],"sectionNumber":4310,"textBefore":"of SYN545974 (","textAfter":", 2015a) in","comments":null,"startOffset":317,"endOffset":325,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618617Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d1373b72bad94674aa638fba2190bd9","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Functional observational battery (FOB):","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":728.18},"width":82.53038,"height":11.017679,"page":395}],"sectionNumber":4309,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10960,"endOffset":10977,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618617Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7436bca476f54dd179011cf149b2569","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":143.16176,"y":576.35},"width":19.337448,"height":11.017679,"page":395}],"sectionNumber":4310,"textBefore":"day 1. Female ","textAfter":"-Wistar rats in","comments":null,"startOffset":843,"endOffset":846,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618617Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"937f96b3a6fab313801984db0ba46e74","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":313.59805,"y":542.63},"width":34.40796,"height":10.0905,"page":396}],"sectionNumber":4312,"textBefore":"KG, 73494 Rosenberg, ","textAfter":", imported by","comments":null,"startOffset":348,"endOffset":355,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618617Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40620422c7ebeba70969f9c01f228060","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":715.1},"width":28.467995,"height":10.018499,"page":396}],"sectionNumber":4311,"textBefore":null,"textAfter":null,"comments":null,"startOffset":107,"endOffset":114,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618617Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bac512484e1f265f197d87ff071567b0","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Group identification and animal numbers","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":328.87,"y":242.10004},"width":14.619995,"height":10.018499,"page":396},{"topLeft":{"x":410.59,"y":242.10004},"width":14.619995,"height":10.018499,"page":396},{"topLeft":{"x":485.5,"y":242.10004},"width":19.044983,"height":10.018499,"page":396}],"sectionNumber":4316,"textBefore":null,"textAfter":null,"comments":null,"startOffset":20,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618618Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787124Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b4d0af5562bc977ab13084a56b4f8f58","type":"CBI_address","value":"Harlan Teklad","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":277.427,"y":474.59},"width":52.534058,"height":10.0905,"page":396}],"sectionNumber":4312,"textBefore":"Pelleted standard ","textAfter":" 2914C rodent","comments":null,"startOffset":673,"endOffset":686,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618618Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d5abfdeecfcf8765d9f30b00543c05d","type":"CBI_author","value":"Rosenberg","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":270.677,"y":542.63},"width":39.439026,"height":10.0905,"page":396}],"sectionNumber":4312,"textBefore":"Co. KG, 73494 ","textAfter":", Germany, imported","comments":null,"startOffset":337,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618618Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b937df900ffcd4d87853de52344f0953","type":"PII","value":"10 30 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Group identification and animal numbers","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":331.15,"y":212.46002},"width":10.059998,"height":10.018499,"page":396},{"topLeft":{"x":412.87,"y":212.46002},"width":10.059998,"height":10.018499,"page":396},{"topLeft":{"x":487.66,"y":212.46002},"width":14.619995,"height":10.018499,"page":396}],"sectionNumber":4318,"textBefore":null,"textAfter":null,"comments":null,"startOffset":28,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618618Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787124Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e7d3b88b2f22419118cdbc40486ae1aa","type":"PII","value":"17 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.7.1-5: Cage-side observations noted on day 1 at unscheduled intervals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":86.544,"y":189.29999},"width":10.059998,"height":10.0905,"page":397},{"topLeft":{"x":142.82,"y":189.29999},"width":14.619995,"height":10.0905,"page":397}],"sectionNumber":4324,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618618Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787125Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1bc4cd95606a34219834c55fb71ce484","type":"PII","value":"15 100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.7.1-5: Cage-side observations noted on day 1 at unscheduled intervals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":86.544,"y":204.18},"width":10.059998,"height":10.0905,"page":397},{"topLeft":{"x":142.82,"y":204.18},"width":14.619995,"height":10.0905,"page":397}],"sectionNumber":4323,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618618Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787125Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"991eaa856ec3f08b719eaf87505df5d6","type":"PII","value":"34 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.7.1-5: Cage-side observations noted on day 1 at unscheduled intervals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":86.544,"y":174.41998},"width":10.059998,"height":10.0905,"page":397},{"topLeft":{"x":140.54,"y":174.41998},"width":19.044998,"height":10.0905,"page":397}],"sectionNumber":4325,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618618Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787125Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6980d8c6dec9e526dcedb1a3acec99f3","type":"CBI_author","value":"Square","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Group identification and animal numbers","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":408.32144,"y":601.7},"width":31.448303,"height":11.017679,"page":397}],"sectionNumber":4321,"textBefore":"with standard deviations. ","textAfter":" root transformations","comments":null,"startOffset":2111,"endOffset":2117,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618619Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5e7d16a7e8279d41df743bc7bfa966a0","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.7.1-8: Mean LMA parameters obtained over a 30 min session at 6 hrs post-dose on day 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":325.03,"y":242.34003},"width":14.619995,"height":10.018499,"page":399},{"topLeft":{"x":400.87,"y":242.34003},"width":14.619995,"height":10.018499,"page":399},{"topLeft":{"x":480.22,"y":242.34003},"width":19.044983,"height":10.018499,"page":399}],"sectionNumber":4350,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618619Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787125Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d228401327ceb8e0e6e12b426a2b8ea3","type":"PII","value":"103 169 70 117","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.7.1-8: Mean LMA parameters obtained over a 30 min session at 6 hrs post-dose on day 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":252.05,"y":183.18},"width":14.62001,"height":10.0905,"page":399},{"topLeft":{"x":325.03,"y":183.18},"width":14.619995,"height":10.0905,"page":399},{"topLeft":{"x":403.15,"y":183.18},"width":10.059998,"height":10.0905,"page":399},{"topLeft":{"x":484.78,"y":183.18},"width":14.490997,"height":10.0905,"page":399}],"sectionNumber":4354,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618619Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787125Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"07f9c1b1f93fc02b2c52def624af73c1","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Functional observational battery (FOB):","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":220.5949,"y":576.35},"width":19.337448,"height":11.017679,"page":400}],"sectionNumber":4360,"textBefore":"this study, female ","textAfter":"-Wistar rats were","comments":null,"startOffset":5686,"endOffset":5689,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618619Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"94015420254fb0c897dbdd04c4e2471f","type":"CBI_author","value":"Davies M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Functional observational battery (FOB):","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":299.45,"y":359.73},"width":44.155334,"height":11.017679,"page":400}],"sectionNumber":4360,"textBefore":"of SYN545974 (","textAfter":", 2015a). CONCLUSION:","comments":null,"startOffset":6961,"endOffset":6969,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618619Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"06faae57e91a4168f42f97c062e59ee1","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Functional observational battery (FOB):","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":321.69},"width":19.337433,"height":11.017679,"page":400}],"sectionNumber":4360,"textBefore":"SYN545974 to female ","textAfter":"-Wistar rats at","comments":null,"startOffset":7072,"endOffset":7075,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618619Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"faf17e7145b252d8cce9f290118dd259","type":"CBI_author","value":"Broich K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Functional observational battery (FOB):","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":454.9,"y":157.26001},"width":41.605103,"height":11.017679,"page":400}],"sectionNumber":4360,"textBefore":"reversed quickly. (","textAfter":", 2015a)","comments":null,"startOffset":7877,"endOffset":7885,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618619Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b2835055d92bfc7f01c4125785bb343","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.7.2. Delayed polyneuropathy studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":366.64743,"y":302.01},"width":28.511688,"height":11.017679,"page":401}],"sectionNumber":4370,"textBefore":"studies undertaken by ","textAfter":" under the","comments":null,"startOffset":1685,"endOffset":1689,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618619Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e6d452c9c063f5737b0403331fd492e4","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.7.2. Delayed polyneuropathy studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.96765,"y":289.40997},"width":41.881104,"height":11.017679,"page":401}],"sectionNumber":4370,"textBefore":"BASF (for which ","textAfter":" has coownership)","comments":null,"startOffset":1794,"endOffset":1802,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61862Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30f4d7b906717489d2e55585ea3467f8","type":"CBI_author","value":"Macdonald","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.7.2. Delayed polyneuropathy studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.08337,"y":628.46},"width":50.547485,"height":11.017679,"page":401}],"sectionNumber":4370,"textBefore":"in plasma (","textAfter":" and Yewkes,","comments":null,"startOffset":799,"endOffset":808,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61862Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"79f85c3f81b0cb398559836a6fc6fe88","type":"CBI_author","value":"Yewkes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.7.2. Delayed polyneuropathy studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":448.4064,"y":628.46},"width":36.350067,"height":11.017679,"page":401}],"sectionNumber":4370,"textBefore":"plasma (Macdonald and ","textAfter":", 2015 and","comments":null,"startOffset":813,"endOffset":819,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61862Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b147c8b818c708580513084adeca43c","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.7.2. Delayed polyneuropathy studies","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":363.80682,"y":289.40997},"width":28.511688,"height":11.017679,"page":401}],"sectionNumber":4370,"textBefore":"studies conducted by ","textAfter":" (for which","comments":null,"startOffset":1778,"endOffset":1782,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61862Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0a59cfd3a3414c7bba40a322e5e9f610","type":"CBI_author","value":"Tomlinson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.7.2. Delayed polyneuropathy studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":615.74},"width":48.736946,"height":11.017679,"page":401}],"sectionNumber":4370,"textBefore":"Yewkes, 2015 and ","textAfter":" et al.,","comments":null,"startOffset":830,"endOffset":839,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61862Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c8f37699633496d4df1f0ba086466668","type":"CBI_address","value":"Safepharm","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":417.91,"y":710.78},"width":40.014984,"height":10.0905,"page":402}],"sectionNumber":4362,"textBefore":"(2008). Report No. ","textAfter":" 2364/0169. Syngenta","comments":null,"startOffset":121,"endOffset":130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61862Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"06d2be120b796829dd681030b36b32f2","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":409.36002,"y":480.11},"width":23.391968,"height":10.0905,"page":402}],"sectionNumber":4368,"textBefore":"(2009). Report No. ","textAfter":" 2009/1072507. Syngenta","comments":null,"startOffset":222,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61862Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"830708d98c809ab4123f4a91ef41c983","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":426.19,"y":627.02},"width":34.51599,"height":10.0905,"page":402}],"sectionNumber":4364,"textBefore":"No. Harlan 1266902. ","textAfter":" File No.","comments":null,"startOffset":130,"endOffset":138,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618621Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04013467c70764ff88a1ccf77c835896","type":"CBI_author","value":"Bohnenberger","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":393.31,"y":647.66},"width":51.96695,"height":10.0905,"page":402}],"sectionNumber":4364,"textBefore":null,"textAfter":", S (2009).","comments":null,"startOffset":79,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618621Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fdcc4212cfef99ac128ef926518e0e33","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":399.67,"y":700.46},"width":34.470978,"height":10.0905,"page":402}],"sectionNumber":4362,"textBefore":"No. Safepharm 2364/0169. ","textAfter":" File No.","comments":null,"startOffset":142,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618621Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"62e9dd0dfd18eb6c60f723f8eeab833b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":395.11,"y":501.35},"width":34.470978,"height":10.0905,"page":402}],"sectionNumber":4367,"textBefore":"No. BASF 50S0451/07119. ","textAfter":" File No.","comments":null,"startOffset":254,"endOffset":262,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618621Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"52d9859f0e39e95f63cd98cb38218e21","type":"CBI_author","value":"Wollny, H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.47,"y":605.78},"width":38.890015,"height":10.0905,"page":402}],"sectionNumber":4365,"textBefore":null,"textAfter":" (2009). Report","comments":null,"startOffset":111,"endOffset":120,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618621Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dd42c1852fe9b128474cdc1efe9d8f77","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":490.50397,"y":480.11},"width":34.462036,"height":10.0905,"page":402}],"sectionNumber":4368,"textBefore":"No. BASF 2009/1072507. ","textAfter":" File No.","comments":null,"startOffset":241,"endOffset":249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618621Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"460586f135fd028c3103cf4a5597356a","type":"CBI_address","value":"Safepharm","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Toxicological reference values for the metabolite CSAA798670:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":249.73964,"y":172.38},"width":44.126846,"height":10.526819,"page":402}],"sectionNumber":4371,"textBefore":"Laboratory Report No. ","textAfter":" 2364/0169 issue","comments":null,"startOffset":215,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618622Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e4b7d08fad2494de81ff48080196a49","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":424.72,"y":511.66998},"width":23.391968,"height":10.0905,"page":402}],"sectionNumber":4367,"textBefore":"(2009). Report No. ","textAfter":" 50S0451/07119. Syngenta","comments":null,"startOffset":234,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618622Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b1a87dac09a9f701b7898eca2ce3562c","type":"CBI_author","value":"Sokolowski","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.79,"y":689.66},"width":43.434998,"height":10.0905,"page":402}],"sectionNumber":4363,"textBefore":null,"textAfter":", A (2007).","comments":null,"startOffset":108,"endOffset":118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618622Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3716424e8288e85bf3f268f839873b4d","type":"CBI_author","value":"Pooles, A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.03,"y":721.22},"width":36.135986,"height":10.0905,"page":402}],"sectionNumber":4362,"textBefore":null,"textAfter":" (2008). Report","comments":null,"startOffset":92,"endOffset":101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618622Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a8982f65624de68944a8fb948f1e4afa","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Toxicological reference values for the metabolite CSAA798670:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":361.65408,"y":69.76001},"width":82.54144,"height":11.017679,"page":402}],"sectionNumber":4373,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1655,"endOffset":1672,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618622Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c73c24fc1861e06e72a967866a75cc3a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":392.35,"y":668.9},"width":34.470978,"height":10.0905,"page":402}],"sectionNumber":4363,"textBefore":"No. RCC 1077403. ","textAfter":" File No.","comments":null,"startOffset":154,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618622Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6a63d4e663d8d60e6dc6126d9e3b9a5b","type":"CBI_address","value":"SafePharm Laboratories Ltd, Shardlow Business Park, Shardlow, Derbyshire, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Toxicological reference values for the metabolite CSAA798670:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":205.86067,"y":183.89996},"width":311.4038,"height":10.526819,"page":402},{"topLeft":{"x":133.82,"y":172.38},"width":15.382233,"height":10.526819,"page":402}],"sectionNumber":4371,"textBefore":"in the Rat. ","textAfter":". Laboratory Report","comments":null,"startOffset":115,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618623Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d503cdb33a842ad37c99689c51a48f12","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":426.19,"y":585.11},"width":34.470978,"height":10.0905,"page":402}],"sectionNumber":4365,"textBefore":"No. Harlan 1266901. ","textAfter":" File No.","comments":null,"startOffset":156,"endOffset":164,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618623Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15004978c77e793b002037fb8aaea64b","type":"CBI_author","value":"Pooles A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Toxicological reference values for the metabolite CSAA798670:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.01263,"y":195.41998},"width":39.704575,"height":10.526819,"page":402}],"sectionNumber":4371,"textBefore":"Report: K-CA 5.8.1/01 ","textAfter":" (2008). DF-Pyrazole","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618623Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4f5bbaf49a82d2d0117ffd5e87dbb23","type":"CBI_author","value":"Sommer, E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.27,"y":563.87},"width":41.383026,"height":10.0905,"page":402}],"sectionNumber":4366,"textBefore":null,"textAfter":" (2010). Report","comments":null,"startOffset":180,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618623Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f29e5da6c1f5870f4ed76e6f2f726d91","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":426.19,"y":543.23},"width":34.470978,"height":10.0905,"page":402}],"sectionNumber":4366,"textBefore":"No. Harlan C57852. ","textAfter":" File No.","comments":null,"startOffset":224,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618623Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f8a16dfb6792cb9db2d8b94c3b5d9a9","type":"CBI_author","value":"Kaspers, U","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.83,"y":521.99},"width":40.960022,"height":10.0905,"page":402}],"sectionNumber":4367,"textBefore":null,"textAfter":" et al.,","comments":null,"startOffset":196,"endOffset":206,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618623Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"965bb13009e99177ca61323c3297b6ba","type":"CBI_author","value":"Schneider, S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":397.27,"y":490.43},"width":46.521973,"height":10.0905,"page":402}],"sectionNumber":4368,"textBefore":null,"textAfter":" et al.,","comments":null,"startOffset":182,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618623Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9431b4c8a69e34272d06cd64e96c3bff","type":"CBI_address","value":"RCC","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":431.95,"y":679.22},"width":19.008972,"height":10.0905,"page":402}],"sectionNumber":4363,"textBefore":"(2007). Report No. ","textAfter":" 1077403. Syngenta","comments":null,"startOffset":141,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618624Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ef4c77f6e9619cf57e199ca605eb43be","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Toxicological reference values for the metabolite CSAA798670:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":192.31506,"y":160.97998},"width":38.160767,"height":10.526819,"page":402}],"sectionNumber":4371,"textBefore":"1 2011. Unpublished. ","textAfter":" File No.CA4312/0003","comments":null,"startOffset":290,"endOffset":298,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618624Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f7f95108d03a96f095f6875251267b5","type":"PII","value":"299-312","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: Dimethyl sulphoxide","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":369.9591,"y":347.25},"width":31.241882,"height":10.0905,"page":403}],"sectionNumber":4377,"textBefore":"at dosing Males: ","textAfter":" g; Females:","comments":null,"startOffset":136,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618624Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78713Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eb0f9d84bb62301e5893d38f6818978c","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: Dimethyl sulphoxide","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.61,"y":359.13},"width":30.528992,"height":10.0905,"page":403}],"sectionNumber":4377,"textBefore":null,"textAfter":"-Dawley CD","comments":null,"startOffset":53,"endOffset":60,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618624Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bc3b079d6b608201578a9cbd9995867","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.23776,"y":728.9},"width":36.97934,"height":11.017679,"page":403}],"sectionNumber":4374,"textBefore":"study, four fasted ","textAfter":"-Dawley CD strain","comments":null,"startOffset":63,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618624Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b0b43b7df2f4c2aadfe6533be588b066","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"The acute oral median lethal dose (LD50) of DF-pyrazole acid (CA4312) in the Sprague-Dawley CD\nstrain rat was estimated as being >2000 mg/kg bw.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":434.80905,"y":580.07},"width":40.22513,"height":10.929359,"page":403}],"sectionNumber":4376,"textBefore":"(CA4312) in the ","textAfter":"-Dawley CD strain","comments":null,"startOffset":77,"endOffset":84,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618624Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a71c9f3aca44d41b89db9bbfe5342d7","type":"PII","value":"204-252","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: Dimethyl sulphoxide","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":446.1731,"y":347.25},"width":31.257904,"height":10.0905,"page":403}],"sectionNumber":4377,"textBefore":"299-312 g; Females: ","textAfter":" g","comments":null,"startOffset":156,"endOffset":163,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618624Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787131Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0da61df4aabbb06fa4400fcccdea98e3","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":691.58},"width":37.08976,"height":11.017679,"page":404}],"sectionNumber":4382,"textBefore":"(CA4312) in the ","textAfter":"-Dawley CD strain","comments":null,"startOffset":362,"endOffset":369,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618624Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92c39b45f7fd4786509f16f50d9caf9e","type":"CBI_address","value":"RCC","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":343.91428,"y":603.62},"width":20.959839,"height":10.526819,"page":404}],"sectionNumber":4380,"textBefore":"DF-pyrazole Acid (CA4312). ","textAfter":", Cytotest Cell","comments":null,"startOffset":143,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618624Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0142a314830e54997823ea52e909f362","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":293.73172,"y":580.55},"width":38.05127,"height":10.526819,"page":404}],"sectionNumber":4380,"textBefore":"May 2007. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":296,"endOffset":304,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3b67521a105572be93a7cd35191f644","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.56978,"y":527.27},"width":82.552475,"height":11.017679,"page":404}],"sectionNumber":4382,"textBefore":null,"textAfter":null,"comments":null,"startOffset":558,"endOffset":575,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"55cf2a403df7c0b7702afed3e4507f6e","type":"CBI_author","value":"Pooles A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.40945,"y":666.86},"width":41.119354,"height":11.017679,"page":404}],"sectionNumber":4382,"textBefore":"mg/kg bw. (","textAfter":", 2008) Guidelines:","comments":null,"startOffset":431,"endOffset":439,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59d2412185cc780a2f131843a7ab481f","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.01062,"y":615.02},"width":61.646423,"height":10.526819,"page":404}],"sectionNumber":4380,"textBefore":"Report: K-CA 5.8.1/02 ","textAfter":" (2007). Salmonella","comments":null,"startOffset":22,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d62f53cd6cf6d47b3da83819cbe5557","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":668.06},"width":28.477005,"height":10.018499,"page":405}],"sectionNumber":4384,"textBefore":null,"textAfter":null,"comments":null,"startOffset":122,"endOffset":129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"faffde450b72167bf9529b2f24af952d","type":"PII","value":"176969-34-9","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":212.69,"y":656.54},"width":47.5,"height":10.0905,"page":405}],"sectionNumber":4384,"textBefore":null,"textAfter":null,"comments":null,"startOffset":147,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787132Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"45d3ae41890f7c28937eb24380318d50","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Protocol:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":603.5},"width":26.62384,"height":11.017679,"page":407}],"sectionNumber":4404,"textBefore":"the software program ","textAfter":" Study Manager.","comments":null,"startOffset":1194,"endOffset":1198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e0246820c188eb32795f7d0375cfd45e","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":247.10457,"y":602.9},"width":276.04462,"height":10.526819,"page":408},{"topLeft":{"x":133.82,"y":591.38},"width":199.06464,"height":10.526819,"page":408}],"sectionNumber":4405,"textBefore":"Lymphocytes In Vitro. ","textAfter":". Laboratory Report","comments":null,"startOffset":116,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6710ff2d3a9ddbd95d8f799d15ddb17c","type":"CBI_author","value":"Sokolowski A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.81943,"y":666.26},"width":63.662994,"height":11.017679,"page":408}],"sectionNumber":4407,"textBefore":"mutation assay. (","textAfter":", 2007) Guidelines:","comments":null,"startOffset":1924,"endOffset":1936,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d278342fed00133fedf5238d91d7e5c7","type":"CBI_author","value":"Bohnenberger S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.24171,"y":614.42},"width":68.24992,"height":10.526819,"page":408}],"sectionNumber":4405,"textBefore":"Report: K-CA 5.8.1/03 ","textAfter":" (2009). CSAA798670:","comments":null,"startOffset":22,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bcfab5352ed8036a0d98348206bb5af","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":513.95},"width":82.53038,"height":11.017679,"page":408}],"sectionNumber":4407,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2112,"endOffset":2129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d9bfe500d748f234f380c89dd290bf0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":277.01492,"y":579.95},"width":38.05127,"height":10.526819,"page":408}],"sectionNumber":4405,"textBefore":"November 2009. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":292,"endOffset":300,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15675253ec0fc2093f455448f5f3b2a3","type":"PII","value":"176969-34-9","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":212.69,"y":656.54},"width":47.5,"height":10.0905,"page":409}],"sectionNumber":4409,"textBefore":null,"textAfter":null,"comments":null,"startOffset":119,"endOffset":130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787133Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"19ba9af5c8657b82cca5a30b6704077f","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":668.06},"width":28.467995,"height":10.018499,"page":409}],"sectionNumber":4409,"textBefore":null,"textAfter":null,"comments":null,"startOffset":98,"endOffset":105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e18b8eb2d21aeb5e0b6f390a4606cda3","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":422.56458,"y":262.28998},"width":28.5448,"height":11.017679,"page":411}],"sectionNumber":4446,"textBefore":"significance using the ","textAfter":" Exact Probability","comments":null,"startOffset":1240,"endOffset":1246,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2df082c8cda06d7e4206f2379e714d83","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH, (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":360.07,"y":602.9},"width":163.10907,"height":10.526819,"page":412},{"topLeft":{"x":133.82,"y":591.38},"width":290.56995,"height":10.526819,"page":412}],"sectionNumber":4447,"textBefore":"Lymphoma L5178Y Cells. ","textAfter":". Laboratory Report","comments":null,"startOffset":142,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618626Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d214cdb21b3d3aa0b8e1b49c2e7891dd","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":513.95},"width":82.53038,"height":11.017679,"page":412}],"sectionNumber":4449,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1456,"endOffset":1473,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b7596cd22b864e818700676601467e64","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":311.9953,"y":579.95},"width":38.160828,"height":10.526819,"page":412}],"sectionNumber":4447,"textBefore":"November 2009. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":307,"endOffset":315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"952e0e1a685518b341b05f8bf7e7aa32","type":"CBI_author","value":"Wollny H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.24171,"y":614.42},"width":43.16066,"height":10.526819,"page":412}],"sectionNumber":4447,"textBefore":"Report: K-CA 5.8.1/04 ","textAfter":" (2009). CSAA798670:","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"689435bb956137b879278c7328ac1604","type":"CBI_author","value":"Bohnenberger S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.29944,"y":666.26},"width":72.28528,"height":11.017679,"page":412}],"sectionNumber":4449,"textBefore":"required concentration. (","textAfter":", 2009) Guidelines:","comments":null,"startOffset":1266,"endOffset":1280,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95647920ccabbc821871d6af6a3c0e1d","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":418.9296,"y":427.43},"width":27.26413,"height":11.017679,"page":412}],"sectionNumber":4450,"textBefore":null,"textAfter":null,"comments":null,"startOffset":88,"endOffset":94,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"adac4e20d1759b728e500d056fc16949","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":668.06},"width":28.467995,"height":10.018499,"page":413}],"sectionNumber":4454,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e92c98fb33d52382a9c91d351f08af6a","type":"PII","value":"176969-34-9","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":212.69,"y":656.54},"width":47.5,"height":10.0905,"page":413}],"sectionNumber":4455,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787133Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"868ddecdfb4b24c898b48a6763d78f35","type":"PII","value":"(1975) 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.08438,"y":264.45},"width":30.355347,"height":10.929359,"page":414},{"topLeft":{"x":408.43,"y":269.49},"width":7.960022,"height":9.10764,"page":414}],"sectionNumber":4481,"textBefore":"Clive and Spector ","textAfter":" . The","comments":null,"startOffset":745,"endOffset":754,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787134Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c99d20ba8db5517eb9e99cb85bee1bfa","type":"CBI_author","value":"Clive D","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":74.664,"y":73.119995},"width":33.738525,"height":10.526819,"page":414}],"sectionNumber":4481,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1685,"endOffset":1692,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618627Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b91735dedf1e6ee0f1e680b3503bb780","type":"PII","value":"17-29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":258.53,"y":61.599976},"width":24.329834,"height":10.526819,"page":414}],"sectionNumber":4481,"textBefore":"Mutat. Res. 31, ","textAfter":", 1975 Spector","comments":null,"startOffset":1837,"endOffset":1842,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787134Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"553f6dc4d2d20745274d93e0c754c4a0","type":"PII","value":"10-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":136.51537,"y":665.66},"width":26.62465,"height":11.017679,"page":415}],"sectionNumber":4481,"textBefore":"saturated air for ","textAfter":" days. Then","comments":null,"startOffset":2476,"endOffset":2481,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787134Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e335a024c2bd54131951137b402270bc","type":"CBI_author","value":"Sommer E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.03452,"y":99.65997},"width":46.87578,"height":10.526819,"page":416}],"sectionNumber":4482,"textBefore":"Report: K-CA 5.8.1/05 ","textAfter":" (2010). CSAA798670:","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"293e4105d04a5b2eb04102fda1c060b3","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":330.59985,"y":76.599976},"width":38.05127,"height":10.526819,"page":416}],"sectionNumber":4482,"textBefore":"11 January 2010. ","textAfter":" File No.","comments":null,"startOffset":235,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"562693c39833e780d443836546387965","type":"CBI_author","value":"Wollny H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":456.80945,"y":151.5},"width":44.718384,"height":11.017679,"page":416}],"sectionNumber":4484,"textBefore":"lymphoma assay. (","textAfter":", 2009) Guidelines:","comments":null,"startOffset":4360,"endOffset":4368,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9e8c227dc3896186fe63e3c03ddc2ac","type":"CBI_address","value":"Harlan Laboratories Ltd. Zelgliweg 1, CH-4452 Itingen / Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":186.91678,"y":88.14398},"width":286.28607,"height":10.526819,"page":416}],"sectionNumber":4482,"textBefore":"the Wistar Rat. ","textAfter":". Laboratory Report","comments":null,"startOffset":108,"endOffset":175,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6af98764e5ff54761cf682b287a45a8","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":716.18},"width":82.53038,"height":11.017679,"page":417}],"sectionNumber":4484,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4521,"endOffset":4538,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618628Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"746f78ea0c71367b34751b1a6a02c4f7","type":"PII","value":"176969-34-9","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":222.17,"y":80.91998},"width":47.500015,"height":10.0905,"page":417}],"sectionNumber":4486,"textBefore":"97.4% ","textAfter":null,"comments":null,"startOffset":128,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787135Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f050ed89a4bc449144e452dfea8b4a80","type":"PII","value":"12000 1007","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":186.5,"y":356.37},"width":23.598999,"height":10.0905,"page":418},{"topLeft":{"x":271.37,"y":356.37},"width":19.044983,"height":10.0905,"page":418}],"sectionNumber":4494,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787135Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"871c9cc592dd26d7b12391f48abf8891","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen / Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Diet preparation and analysis:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":187.13406,"y":167.58002},"width":208.2319,"height":11.017679,"page":418}],"sectionNumber":4497,"textBefore":"D. Burger (","textAfter":") and stored","comments":null,"startOffset":922,"endOffset":969,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dbadf54366ba7be79680faadc3e1a392","type":"CBI_address","value":"Provimi Kliba SA, 4303 Kaiseraugst","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":216.19102,"y":740.9},"width":162.66487,"height":11.017679,"page":418}],"sectionNumber":4488,"textBefore":null,"textAfter":null,"comments":null,"startOffset":158,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"41d6e2a974d6e506b66a1f3803686fca","type":"CBI_address","value":"Harlan Laboratories B.V., Kreuzelweg 53, 5961 NM Horst / Netherlands","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":668.54},"width":263.58405,"height":10.0905,"page":418}],"sectionNumber":4487,"textBefore":null,"textAfter":null,"comments":null,"startOffset":142,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"50da0a5a778fd2dd5f2ecefb80df73ce","type":"PII","value":"1043 16-20 36-40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":291.87198,"y":356.37},"width":19.044983,"height":10.0905,"page":418},{"topLeft":{"x":372.91,"y":356.37},"width":22.059998,"height":10.0905,"page":418},{"topLeft":{"x":465.7,"y":356.37},"width":22.059998,"height":10.0905,"page":418}],"sectionNumber":4494,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787135Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b3046367366c8da9cb15975bd62ba2fa","type":"PII","value":"21-25","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":465.7,"y":400.89},"width":22.059998,"height":10.0905,"page":418}],"sectionNumber":4491,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787136Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0b8a38e38198e40e26f988ffbe70247d","type":"PII","value":"6000 511","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.81,"y":371.25},"width":19.044998,"height":10.0905,"page":418},{"topLeft":{"x":275.81,"y":371.25},"width":14.607971,"height":10.0905,"page":418}],"sectionNumber":4493,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787136Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"940baeb83cd85e1f6ce94816624b8322","type":"PII","value":"2000 167","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.81,"y":386.01},"width":19.044998,"height":10.0905,"page":418},{"topLeft":{"x":275.81,"y":386.01},"width":14.607971,"height":10.0905,"page":418}],"sectionNumber":4492,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4,"endOffset":12,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618629Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787136Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"92199c37a37073592c97b5fae7aa97ec","type":"PII","value":"572 11-15 31-35","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":291.857,"y":371.25},"width":14.508972,"height":10.0905,"page":418},{"topLeft":{"x":372.91,"y":371.25},"width":22.059998,"height":10.0905,"page":418},{"topLeft":{"x":465.7,"y":371.25},"width":22.059998,"height":10.0905,"page":418}],"sectionNumber":4493,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61863Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787136Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"640c4e170e34db09f4334af0fc785471","type":"PII","value":"175 06-10 26-30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":291.857,"y":386.01},"width":14.508972,"height":10.0905,"page":418},{"topLeft":{"x":372.91,"y":386.01},"width":22.059998,"height":10.0905,"page":418},{"topLeft":{"x":465.7,"y":386.01},"width":22.059998,"height":10.0905,"page":418}],"sectionNumber":4492,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61863Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787137Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0c2d5a338f2b412e6feeac3e63155d43","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen / Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Diet preparation and analysis:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":442.42984,"y":142.38},"width":90.08176,"height":11.017679,"page":418},{"topLeft":{"x":64.104,"y":129.65997},"width":116.87588,"height":11.017679,"page":418}],"sectionNumber":4497,"textBefore":"method determined at ","textAfter":". The identity","comments":null,"startOffset":1182,"endOffset":1229,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61863Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dfac6a6c48d53bf4271bd5776ab7207d","type":"CBI_author","value":"Bartlett","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Diet preparation and analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":425.8297,"y":740.9},"width":34.053772,"height":11.017679,"page":419}],"sectionNumber":4497,"textBefore":"variance according to ","textAfter":") and with","comments":null,"startOffset":1779,"endOffset":1787,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61863Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"933a72217a53594a9ce092e7ccd83a75","type":"CBI_author","value":"Irwin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Diet preparation and analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":117.21744,"y":184.38},"width":24.736008,"height":11.017679,"page":419}],"sectionNumber":4497,"textBefore":"from a modified ","textAfter":" screen test","comments":null,"startOffset":4656,"endOffset":4661,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61863Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2e13ff8e3c4599cf9b917f7ab7b39df","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen / Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":192.77997},"width":207.99142,"height":11.017679,"page":421}],"sectionNumber":4506,"textBefore":"study conducted at ","textAfter":". Mortality: All","comments":null,"startOffset":1140,"endOffset":1187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30abf83f1ba9ae148bd08a745ab04660","type":"PII","value":"6000 511 572","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-2: Mean Dose Received (mg/kg bw/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.29,"y":208.26001},"width":19.044998,"height":10.018499,"page":422},{"topLeft":{"x":346.51,"y":208.5},"width":14.619995,"height":10.0905,"page":422},{"topLeft":{"x":467.74,"y":208.5},"width":14.619995,"height":10.0905,"page":422}],"sectionNumber":4503,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787138Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"974013d43d9ad2543e5d678bb9bee979","type":"PII","value":"12000 1007 1043","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-2: Mean Dose Received (mg/kg bw/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":235.01,"y":195.41998},"width":23.599014,"height":10.018499,"page":422},{"topLeft":{"x":344.35,"y":195.65997},"width":19.044983,"height":10.0905,"page":422},{"topLeft":{"x":465.46,"y":195.65997},"width":19.044983,"height":10.0905,"page":422}],"sectionNumber":4504,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787138Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2efae6f7a6b9893c220a7971d1268d9b","type":"PII","value":"2000 167 175","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-2: Mean Dose Received (mg/kg bw/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.29,"y":221.10004},"width":19.044998,"height":10.018499,"page":422},{"topLeft":{"x":346.51,"y":221.34003},"width":14.619995,"height":10.0905,"page":422},{"topLeft":{"x":467.74,"y":221.34003},"width":14.619995,"height":10.0905,"page":422}],"sectionNumber":4502,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787138Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"91b3567ebb5651725d9b7c8d9cc4405d","type":"PII","value":"2000 6000 12000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-3: Intergroup comparison of selected microscopic findings in the liver","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":209.33,"y":241.38},"width":19.044998,"height":10.018499,"page":423},{"topLeft":{"x":258.29,"y":241.38},"width":19.044983,"height":10.018499,"page":423},{"topLeft":{"x":305.09,"y":241.38},"width":23.598969,"height":10.018499,"page":423}],"sectionNumber":4508,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787138Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8d96a9b61314bd92ed5420013826bfca","type":"PII","value":"2000 6000 12000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-3: Intergroup comparison of selected microscopic findings in the liver","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.43,"y":241.38},"width":19.044983,"height":10.018499,"page":423},{"topLeft":{"x":454.54,"y":241.38},"width":19.044983,"height":10.018499,"page":423},{"topLeft":{"x":498.46,"y":241.38},"width":23.59903,"height":10.018499,"page":423}],"sectionNumber":4508,"textBefore":null,"textAfter":null,"comments":null,"startOffset":30,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787139Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0943d77b418d3179fbe302c374ae19a4","type":"CBI_author","value":"Strauss V.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":258.10327,"y":248.46002},"width":44.017273,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"5.8.1/06 Kaspers U., ","textAfter":", Graters S.,","comments":null,"startOffset":34,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb51b7e4df563ee3201a2ebf39f30eb5","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":213.89996},"width":25.870132,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"Ludwigshafen/Rhein; Germany Fed.Rep. ","textAfter":" Report Number","comments":null,"startOffset":270,"endOffset":274,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b8ab2159f91b2b7dfbf9db7ffa61ae2d","type":"CBI_author","value":"van Ravenzwaay B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.58493,"y":248.46002},"width":84.694,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"S., Fabian E., ","textAfter":" (2009). Reg.No.","comments":null,"startOffset":69,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618631Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"466cf6454c8f7382c367e8e4a10e6874","type":"CBI_author","value":"Graters S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":308.21204,"y":248.46002},"width":42.961456,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"U., Strauss V., ","textAfter":", Fabian E.,","comments":null,"startOffset":46,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"89cf558d703921611354c948eeab4796","type":"CBI_address","value":"BASF SE; Ludwigshafen/Rhein; Germany Fed.Rep.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":309.1691,"y":225.41998},"width":213.89517,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"in the Diet. ","textAfter":" BASF Report","comments":null,"startOffset":224,"endOffset":269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d72a135840fa83d40f9d527e8514410","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Sacrifice and pathology:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":448.0185,"y":213.89996},"width":37.931763,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"8 October 2009. ","textAfter":" File No.","comments":null,"startOffset":338,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a09c394b56a78b2576a2f7acaf098a9a","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Sacrifice and pathology:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":137.10004},"width":82.53038,"height":11.017679,"page":424}],"sectionNumber":4513,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4620,"endOffset":4637,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"09809cd6e395b57d656808704ec88784","type":"CBI_author","value":"Fabian E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.24506,"y":248.46002},"width":41.25833,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"V., Graters S., ","textAfter":", van Ravenzwaay","comments":null,"startOffset":58,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0d92e58eca42c6605058a3ab01906b67","type":"CBI_author","value":"Sommer E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.68945,"y":300.33002},"width":47.69922,"height":11.017679,"page":424}],"sectionNumber":4513,"textBefore":"in females. (","textAfter":", 2010) Guidelines:","comments":null,"startOffset":4488,"endOffset":4496,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b47a809fe3382f01cd458384bac636e4","type":"CBI_author","value":"Kaspers U.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":204.63802,"y":248.46002},"width":47.373764,"height":10.526819,"page":424}],"sectionNumber":4511,"textBefore":"Report: K-CA 5.8.1/06 ","textAfter":", Strauss V.,","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"904326a168fa9f505638be3f4e6b9e35","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the no observed adverse effect level (NOAEL) was 1000 mg/kg\nbw.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":556.67},"width":28.467995,"height":10.018499,"page":425}],"sectionNumber":4515,"textBefore":null,"textAfter":null,"comments":null,"startOffset":126,"endOffset":133,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"76f68cf0cb9cc44af8b7a663ff0c3e15","type":"CBI_address","value":"Charles River, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: Rodent diet","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":414.33},"width":88.72301,"height":10.0905,"page":425}],"sectionNumber":4517,"textBefore":null,"textAfter":null,"comments":null,"startOffset":197,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618632Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ea55cd43be684e97111765ef0402b82","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: Rodent diet","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":457.79},"width":12.501999,"height":10.0905,"page":425}],"sectionNumber":4517,"textBefore":null,"textAfter":":WI (Han)","comments":null,"startOffset":35,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae58bb7d30aa52222ce798aeba142447","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":370.74234,"y":753.5},"width":30.929443,"height":11.017679,"page":425}],"sectionNumber":4514,"textBefore":null,"textAfter":null,"comments":null,"startOffset":75,"endOffset":82,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c3cd15decd2975e7052a411419eb07c2","type":"PII","value":"176969-34-9","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Based on the results of this study the no observed adverse effect level (NOAEL) was 1000 mg/kg\nbw.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.89,"y":544.91},"width":47.500015,"height":10.0905,"page":425}],"sectionNumber":4515,"textBefore":null,"textAfter":null,"comments":null,"startOffset":146,"endOffset":157,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78714Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"13ef56d67604d5ac551f484634059c12","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Vehicle and/or positive control: Rodent diet","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":360.78494,"y":393.09},"width":34.524963,"height":10.0905,"page":425}],"sectionNumber":4517,"textBefore":"Deutschland GmBH, Hohenpreißenberg, ","textAfter":"), floor area","comments":null,"startOffset":337,"endOffset":344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c0e4df1d30f867b8c8fd50dfafd4fa05","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: Rodent diet","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":242.30898,"y":457.79},"width":15.939987,"height":10.0905,"page":425}],"sectionNumber":4517,"textBefore":"Crl:WI (","textAfter":")","comments":null,"startOffset":43,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"50495f509c98165858ef4030da4e6557","type":"CBI_author","value":"KRUSKAL-WALLIS","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Statistics of clinical pathology","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.28604,"y":251.85004},"width":79.14102,"height":10.0905,"page":426}],"sectionNumber":4523,"textBefore":null,"textAfter":null,"comments":null,"startOffset":133,"endOffset":147,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"00d91fbcb67348fca0fb21ebe4a7d681","type":"CBI_author","value":"KRUSKAL-WALLIS","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Statistics of clinical examinations","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.28604,"y":364.65},"width":79.14102,"height":10.0905,"page":426}],"sectionNumber":4521,"textBefore":null,"textAfter":null,"comments":null,"startOffset":326,"endOffset":340,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618633Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d386f84aa60ab20b0f8145110b256e6","type":"CBI_author","value":"KRUSKAL-WALLIS","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Statistics of pathology","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.28604,"y":107.34003},"width":79.14102,"height":10.0905,"page":426}],"sectionNumber":4525,"textBefore":null,"textAfter":null,"comments":null,"startOffset":83,"endOffset":97,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c2872607ff5741faf4d2a59c1d1145d3","type":"logo","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Test substance preparation and analysis:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":255.0,"y":632.0},"width":86.0,"height":33.0,"page":426}],"sectionNumber":4520,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8e10bd720c2b14c488d6231ff97beb43","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"METHODS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":204.0,"y":317.0},"width":188.0,"height":30.0,"page":427}],"sectionNumber":4528,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f09eb29b2fa33b9ece7106f2d6036a11","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"METHODS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":189.0},"width":159.0,"height":29.0,"page":427}],"sectionNumber":4528,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d77e69030781edbe100f1e690a40769b","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Ophthalmoscopy:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":753.5},"width":23.024803,"height":11.017679,"page":428}],"sectionNumber":4604,"textBefore":"Ophthalmoscopy: ","textAfter":" to the","comments":null,"startOffset":16,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aca7ef8bdaeb145ef42d9180d90aac8f","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Ophthalmoscopy:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":112.18318,"y":254.85004},"width":42.02466,"height":11.017679,"page":428}],"sectionNumber":4604,"textBefore":"GmbH, Bad Homburg, ","textAfter":". For this","comments":null,"startOffset":1485,"endOffset":1492,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"35bfccfa637d2d9a81f5e12b75b7e0ac","type":"CBI_author","value":"Large","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Ophthalmoscopy:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.25,"y":643.34},"width":21.907013,"height":10.0905,"page":429}],"sectionNumber":4539,"textBefore":null,"textAfter":" unstained cell","comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c811fd4889d47cdf4ad068d6494b32b","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-4: Mean body weight of rats administered M700F001 for at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.43,"y":543.71},"width":14.619995,"height":10.0905,"page":431},{"topLeft":{"x":471.94,"y":543.71},"width":14.619995,"height":10.0905,"page":431},{"topLeft":{"x":506.98,"y":543.71},"width":19.045013,"height":10.0905,"page":431}],"sectionNumber":4607,"textBefore":null,"textAfter":null,"comments":null,"startOffset":36,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787142Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0f29d0e072c2a9aab4ec8754950ac55e","type":"PII","value":"49 56 63 70 77","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":334.09677,"y":168.02277},"width":97.493195,"height":9.629508,"page":431}],"sectionNumber":4617,"textBefore":"28 35 42 ","textAfter":" 84 91","comments":null,"startOffset":1906,"endOffset":1920,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787142Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"30de3e8fe89647386aa1bdf331c4ddd8","type":"PII","value":"84 91","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.0047,"y":168.02277},"width":31.545532,"height":9.629508,"page":431}],"sectionNumber":4617,"textBefore":"63 70 77 ","textAfter":" 150 200","comments":null,"startOffset":1921,"endOffset":1926,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787142Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"648b162f4140fea66c4b689c8f93f6dc","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-4: Mean body weight of rats administered M700F001 for at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":259.49,"y":543.71},"width":14.619995,"height":10.0905,"page":431},{"topLeft":{"x":301.97,"y":543.71},"width":14.619995,"height":10.0905,"page":431},{"topLeft":{"x":342.19,"y":543.71},"width":19.044983,"height":10.0905,"page":431}],"sectionNumber":4607,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787142Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4db261caab132feb87c574faff71a4b6","type":"PII","value":"14 21 28 35 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":224.08295,"y":168.02277},"width":97.489075,"height":9.629508,"page":431}],"sectionNumber":4617,"textBefore":"days 0 7 ","textAfter":" 49 56","comments":null,"startOffset":1891,"endOffset":1905,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787142Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d8c653b43b6e4af0b911090b8b3c51ec","type":"PII","value":"1711 1707 1673 1865 1259","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-5: Cumulative food consumption of rats administered M700F001 for at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.93,"y":694.46},"width":19.044998,"height":10.0905,"page":432},{"topLeft":{"x":242.57,"y":694.46},"width":19.045013,"height":10.0905,"page":432},{"topLeft":{"x":284.21,"y":694.46},"width":19.044983,"height":10.0905,"page":432},{"topLeft":{"x":325.75,"y":694.46},"width":19.044983,"height":10.0905,"page":432},{"topLeft":{"x":367.39,"y":694.46},"width":19.044983,"height":10.0905,"page":432}],"sectionNumber":4615,"textBefore":"0 to 91# ","textAfter":" 1221 1177","comments":null,"startOffset":52,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787143Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6378427755a929a45613689ad90cdc77","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-6: Selected hematological findings in rats administered M700F001 for at least 90 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":243.65,"y":274.05},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":287.09,"y":274.05},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":328.27,"y":274.05},"width":19.044983,"height":10.0905,"page":432}],"sectionNumber":4619,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787143Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aa05ef6a7515b162881401de097a221d","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-5: Cumulative food consumption of rats administered M700F001 for at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":255.17,"y":721.46},"width":14.62001,"height":10.0905,"page":432},{"topLeft":{"x":296.81,"y":721.46},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":336.19,"y":721.46},"width":19.044983,"height":10.0905,"page":432}],"sectionNumber":4615,"textBefore":null,"textAfter":null,"comments":null,"startOffset":149,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787143Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"432df46392d50d236114753389858de5","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-5: Cumulative food consumption of rats administered M700F001 for at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":421.63,"y":721.46},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":463.3,"y":721.46},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":502.66,"y":721.46},"width":19.044952,"height":10.0905,"page":432}],"sectionNumber":4612,"textBefore":null,"textAfter":null,"comments":null,"startOffset":36,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618635Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787143Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e5e342319ec429ffc60d67bad4f0a4d7","type":"PII","value":"1221 1177 1174","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-5: Cumulative food consumption of rats administered M700F001 for at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":694.82},"width":19.044983,"height":10.0905,"page":432},{"topLeft":{"x":450.7,"y":694.46},"width":19.044983,"height":10.0905,"page":432},{"topLeft":{"x":492.22,"y":694.46},"width":19.044983,"height":10.0905,"page":432}],"sectionNumber":4615,"textBefore":"1673 1865 1259 ","textAfter":" % (compared","comments":null,"startOffset":77,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787143Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0c8ad7e6bd7c15efa993fb51d88d63cd","type":"CBI_author","value":"Wallis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-6: Selected hematological findings in rats administered M700F001 for at least 90 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":186.5,"y":209.10004},"width":24.391006,"height":10.0905,"page":432}],"sectionNumber":4624,"textBefore":" 0.01 (Kruskal-","textAfter":" and Wilcoxon-test.","comments":null,"startOffset":33,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99a5c1e6a1700302ade731bfbddd51fa","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-6: Selected hematological findings in rats administered M700F001 for at least 90 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.31,"y":274.05},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":460.66,"y":274.05},"width":14.619995,"height":10.0905,"page":432},{"topLeft":{"x":501.94,"y":274.05},"width":19.044983,"height":10.0905,"page":432}],"sectionNumber":4619,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787144Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3c39dcb919592c85b0300ec3a7e35b6e","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-7: Serum triglyceride levels in rats administered M700F001 for at least 91 days (group\nmeans)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":243.65,"y":753.86},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":287.09,"y":753.86},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":328.27,"y":753.86},"width":19.044983,"height":10.0905,"page":433}],"sectionNumber":4628,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787144Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"903e8b99bd2ed286fb923027a995c86c","type":"PII","value":"1071 1093","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-8: Selected urine analysis findings in rats administered M700F001 for at least 91 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.87,"y":442.43},"width":19.044983,"height":10.0905,"page":433},{"topLeft":{"x":447.22,"y":442.43},"width":19.044983,"height":10.0905,"page":433}],"sectionNumber":4636,"textBefore":null,"textAfter":null,"comments":null,"startOffset":48,"endOffset":57,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787144Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de2fdf1055b411f8265b0a21c8b38e41","type":"CBI_author","value":"Wallis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-7: Serum triglyceride levels in rats administered M700F001 for at least 91 days (group\nmeans)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":186.5,"y":727.46},"width":24.391006,"height":10.0905,"page":433}],"sectionNumber":4630,"textBefore":" 0.01 (Kruskal-","textAfter":" and Wilcoxon-test.","comments":null,"startOffset":33,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"380d77998f28b5dab1a7bc1e28776171","type":"PII","value":"064 299","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":297.272,"y":146.70001},"width":14.490997,"height":10.0905,"page":433},{"topLeft":{"x":372.07,"y":146.70001},"width":14.607971,"height":10.0905,"page":433}],"sectionNumber":4645,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787145Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9b079760e484dc012f3c1e01695c08d","type":"PII","value":"100 368","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.49,"y":179.22003},"width":30.927994,"height":10.0905,"page":433}],"sectionNumber":4642,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787145Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12076572a83a531f0489ab84332d71d6","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-8: Selected urine analysis findings in rats administered M700F001 for at least 91 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":243.65,"y":469.19},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":287.09,"y":469.19},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":328.27,"y":469.19},"width":19.044983,"height":10.0905,"page":433}],"sectionNumber":4634,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618636Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787145Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"57b1ab6a4e839eb8eb41ca421d379222","type":"PII","value":"1060 1059 1079 1062 1063","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-8: Selected urine analysis findings in rats administered M700F001 for at least 91 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":186.74,"y":442.43},"width":19.044998,"height":10.0905,"page":433},{"topLeft":{"x":230.21,"y":442.43},"width":19.044998,"height":10.0905,"page":433},{"topLeft":{"x":273.65,"y":442.43},"width":19.044983,"height":10.0905,"page":433},{"topLeft":{"x":316.99,"y":442.43},"width":19.044983,"height":10.0905,"page":433},{"topLeft":{"x":360.43,"y":442.43},"width":19.044983,"height":10.0905,"page":433}],"sectionNumber":4636,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787145Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"67308ed51a9255baa6b57fb7b1fb531b","type":"CBI_author","value":"Wallis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Urinalysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":186.5,"y":427.91},"width":24.391006,"height":10.0905,"page":433}],"sectionNumber":4638,"textBefore":" 0.01 (Kruskal-","textAfter":" and Wilcoxon-test.","comments":null,"startOffset":1078,"endOffset":1084,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"67bf959124e86fc8599735a8bba2d4dd","type":"PII","value":"1000 377","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.05,"y":157.62},"width":35.367996,"height":10.0905,"page":433}],"sectionNumber":4644,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787146Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4ab5d8b2d6aac41d1e644837f909f5e6","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-7: Serum triglyceride levels in rats administered M700F001 for at least 91 days (group\nmeans)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.31,"y":753.86},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":460.66,"y":753.86},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":501.94,"y":753.86},"width":19.044983,"height":10.0905,"page":433}],"sectionNumber":4628,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787146Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ca582a8f5200bfe18928b4552b32df65","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":68.44},"width":28.566887,"height":10.929359,"page":433}],"sectionNumber":4653,"textBefore":null,"textAfter":" and histopathology","comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"081e382e821325f0f8c2a789bb5a1db7","type":"CBI_author","value":"Wallis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Necropsy","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":186.5,"y":101.58002},"width":24.391006,"height":10.0905,"page":433}],"sectionNumber":4650,"textBefore":" 0.01 (Kruskal-","textAfter":" and Wilcoxon-test,","comments":null,"startOffset":540,"endOffset":546,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3cdcc5899b30638fb468aee81f1d7f8d","type":"PII","value":"300 353","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.49,"y":168.41998},"width":30.927994,"height":10.0905,"page":433}],"sectionNumber":4643,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787146Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7e9665ed97bb98148591cdac0731cda5","type":"PII","value":"100 300 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-8: Selected urine analysis findings in rats administered M700F001 for at least 91 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.31,"y":469.19},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":460.66,"y":469.19},"width":14.619995,"height":10.0905,"page":433},{"topLeft":{"x":501.94,"y":469.19},"width":19.044983,"height":10.0905,"page":433}],"sectionNumber":4634,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787146Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"34fd8b283182a1c664f860abbe6b6579","type":"PII","value":"1000 247","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.05,"y":112.97998},"width":35.367996,"height":10.0905,"page":433}],"sectionNumber":4648,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787147Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6f52e14b585acdd125d88b3dd88c98e9","type":"PII","value":"300 191","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.49,"y":123.900024},"width":30.927994,"height":10.0905,"page":433}],"sectionNumber":4647,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618637Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787147Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f0dbdd661869abee59cfe0c88df0b9b0","type":"PII","value":"100 249","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-9: Selected mean absolute and relative organ weights of rats administered M700F001\nfor at least 91 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.49,"y":134.70001},"width":30.927994,"height":10.0905,"page":433}],"sectionNumber":4646,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787147Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c9e4e0fe8abcd2506767d1199810a5c4","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Blood analysis","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":428.0,"y":211.0},"width":24.0,"height":10.0,"page":433}],"sectionNumber":4632,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e97a526c6af1033cd0acc79d106fb45b","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Blood analysis","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":347.0,"y":211.0},"width":24.0,"height":10.0,"page":433}],"sectionNumber":4632,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe8760ed30b0f5fda72afe079cdd575a","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Blood analysis","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":509.0,"y":211.0},"width":24.0,"height":10.0,"page":433}],"sectionNumber":4632,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d4f713d42fbb6d013d0aea35e9e1a20","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Blood analysis","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":266.0,"y":211.0},"width":24.0,"height":10.0,"page":433}],"sectionNumber":4632,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ee93a49567b7426c05d4089d7394b491","type":"CBI_author","value":"van Ravenzwaay B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.75037,"y":384.57},"width":88.43683,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":"S., Fabian E., ","textAfter":", 2009) Guidelines:","comments":null,"startOffset":2033,"endOffset":2050,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8d63edf3636c8f82c0a17c90c0dd27aa","type":"CBI_author","value":"Graters S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":315.57617,"y":384.57},"width":45.005493,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":"U., Strauss V., ","textAfter":", Fabian E.,","comments":null,"startOffset":2010,"endOffset":2020,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ea8c90dd68f1d3863a45be442f74a22","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Gross and histopathology","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":314.04306,"y":298.16998},"width":25.870117,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"Report No. 40R0451/07118. ","textAfter":" DocID 2009/1072507.","comments":null,"startOffset":298,"endOffset":302,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df2c484fa209c07614860b81fef7dd38","type":"CBI_author","value":"Schneider S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.80028,"y":332.73},"width":51.706375,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"Report: K-CA 5.8.1/07 ","textAfter":", Fabian E.","comments":null,"startOffset":22,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5da537b411ba8f33ef0d5fa46967cc8","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Gross and histopathology","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.22514,"y":233.46002},"width":82.53038,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2160,"endOffset":2177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64fd95a2d3fb7c5b39629cad4362deaa","type":"CBI_author","value":"Fabian E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":253.89502,"y":332.73},"width":39.455597,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"5.8.1/07 Schneider S., ","textAfter":" and Mellert","comments":null,"startOffset":36,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c87312851cd08466d04f63ccbe6d999d","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Gross and histopathology","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":497.19574,"y":309.69},"width":25.870178,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"Ludwigshafen/Rhein; Germany Fed.Rep. ","textAfter":" Laboratory Report","comments":null,"startOffset":256,"endOffset":260,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7a9576451961ad992dd6d40d386a49b","type":"CBI_author","value":"Mellert W.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":312.38022,"y":332.73},"width":45.202515,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"Fabian E. and ","textAfter":" (2009). Reg.No.","comments":null,"startOffset":50,"endOffset":60,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"07eb2db9db2c6782f3b96d258fc94aee","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Gross and histopathology","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":135.02,"y":286.64996},"width":38.051224,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"14 October 2009. ","textAfter":" File No.","comments":null,"startOffset":340,"endOffset":348,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fddeeed09edd436d4e91c0498f57fba0","type":"CBI_author","value":"Strauss V.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.00186,"y":384.57},"width":46.17572,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":"rats. (Kaspers U., ","textAfter":", Graters S.,","comments":null,"startOffset":1998,"endOffset":2008,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"267d2713e47b0e0c54cbbcb3366224ea","type":"CBI_address","value":"BASF SE; Ludwigshafen/Rhein; Germany Fed.Rep.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Gross and histopathology","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":257.29895,"y":309.69},"width":232.61008,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"Oral Administration (gavage), ","textAfter":" BASF Laboratory","comments":null,"startOffset":210,"endOffset":255,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618639Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ddef55044d716d169494c9c6758cda6","type":"CBI_author","value":"Kaspers U.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.51944,"y":384.57},"width":49.962402,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":"female rats. (","textAfter":", Strauss V.,","comments":null,"startOffset":1986,"endOffset":1996,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61864Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5fbff4cb8216b2df924efcf4462fd4f0","type":"CBI_author","value":"Grade","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":395.44763,"y":566.39},"width":27.838257,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":"a moderate (","textAfter":" 3) diffuse","comments":null,"startOffset":1118,"endOffset":1123,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61864Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bcb59f026fa8e09a15802a189abe22b6","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":457.2665,"y":134.22003},"width":15.0980835,"height":11.017679,"page":434}],"sectionNumber":4654,"textBefore":"group) presumably pregnant ","textAfter":":KBL (NZW) New","comments":null,"startOffset":191,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61864Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2b64c3177bd2300e24b549a8104a1fe5","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":442.12744,"y":146.82},"width":27.38559,"height":11.017679,"page":434}],"sectionNumber":4654,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61864Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5e806e5f36fd313982d45697e06fa21b","type":"CBI_author","value":"Fabian E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":365.10168,"y":384.57},"width":43.128662,"height":11.017679,"page":434}],"sectionNumber":4653,"textBefore":"V., Graters S., ","textAfter":", van Ravenzwaay","comments":null,"startOffset":2022,"endOffset":2031,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618643Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1267303563fa1ac608ad4e7a8a1efbc7","type":"CBI_address","value":"Charles River, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":361.77},"width":88.72301,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":null,"textAfter":null,"comments":null,"startOffset":139,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618643Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"478a9fe0cb03b30c1ff8ca9f514ca86f","type":"CBI_address","value":"blocks (Typ","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":335.20688,"y":308.49},"width":44.11902,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":null,"textAfter":null,"comments":null,"startOffset":492,"endOffset":503,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787149Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6b5d2042261ed859c37b3e5f1775152a","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":414.21},"width":12.501999,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":null,"textAfter":":KBL[NZW]","comments":null,"startOffset":38,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e490c41353fab5ab92c4bdedd24f6e6","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":305.021,"y":339.57},"width":34.524963,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":"Bremer GmbH, Marktheidenfeld, ","textAfter":"), floor area","comments":null,"startOffset":274,"endOffset":281,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9214a94d2245679160c60933d0fa9b0e","type":"CBI_author","value":"Bremer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":478.0691,"y":350.01},"width":27.757019,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":"mesh cages (Draht ","textAfter":" GmbH, Marktheidenfeld,","comments":null,"startOffset":244,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6337f695f65f84dd7ca29f1fff7dfa38","type":"PII","value":"13-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.61,"y":390.57},"width":22.054,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":null,"textAfter":" weeks at","comments":null,"startOffset":66,"endOffset":71,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78715Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"21fde89a3a6eb9209450f7ca5c4c376a","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":531.35},"width":28.467995,"height":10.018499,"page":435}],"sectionNumber":4655,"textBefore":null,"textAfter":null,"comments":null,"startOffset":137,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"01f8509e7d539578ddf1a477eb37a183","type":"CBI_address","value":"blocks (Typ","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":277.544,"y":284.37},"width":44.11902,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":null,"textAfter":null,"comments":null,"startOffset":632,"endOffset":643,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78715Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"77c99337d91cdf6125c660b51e69392b","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":305.5701,"y":318.93},"width":34.398987,"height":10.0905,"page":435}],"sectionNumber":4656,"textBefore":"by Ssniff, Soest, ","textAfter":") collected excreta.","comments":null,"startOffset":433,"endOffset":440,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"330418b34dd43f9cf667db64b584c39d","type":"PII","value":"176969-34-9","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Based on the results of this study the NOAEL for maternal and developmental effects was\n250 mg/kg bw/day.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.89,"y":517.79},"width":47.500015,"height":10.0905,"page":435}],"sectionNumber":4655,"textBefore":null,"textAfter":null,"comments":null,"startOffset":176,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618644Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787151Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b6a7a78687010fb818205748151d5456","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":407.97},"width":23.024803,"height":11.017679,"page":436}],"sectionNumber":4666,"textBefore":"preparation and analysis: ","textAfter":" to study","comments":null,"startOffset":77,"endOffset":82,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d472a4ca5b7450a125abe95c975abe3c","type":"PII","value":"250 2500 10 31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":147.86,"y":463.07},"width":14.619995,"height":10.0905,"page":436},{"topLeft":{"x":297.89,"y":463.07},"width":19.044983,"height":10.0905,"page":436},{"topLeft":{"x":438.7,"y":463.07},"width":10.059998,"height":10.0905,"page":436},{"topLeft":{"x":494.5,"y":463.07},"width":10.059998,"height":10.0905,"page":436}],"sectionNumber":4664,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787151Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9bb6379ae167d2381b68f81b9122ecea","type":"PII","value":"40 400 10 31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":150.14,"y":492.71},"width":10.059998,"height":10.0905,"page":436},{"topLeft":{"x":300.05,"y":492.71},"width":14.619995,"height":10.0905,"page":436},{"topLeft":{"x":438.7,"y":492.71},"width":10.059998,"height":10.0905,"page":436},{"topLeft":{"x":494.5,"y":492.71},"width":10.059998,"height":10.0905,"page":436}],"sectionNumber":4662,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787152Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"870956a73d25f25fac238d4bd0636caf","type":"PII","value":"100 1000 10 31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":147.86,"y":477.83},"width":14.619995,"height":10.0905,"page":436},{"topLeft":{"x":297.89,"y":477.83},"width":19.044983,"height":10.0905,"page":436},{"topLeft":{"x":438.7,"y":477.83},"width":10.059998,"height":10.0905,"page":436},{"topLeft":{"x":494.5,"y":477.83},"width":10.059998,"height":10.0905,"page":436}],"sectionNumber":4663,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787152Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"63b32087f5e125f81ab530187b4939e1","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Methods","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":137.0},"width":214.0,"height":26.0,"page":438}],"sectionNumber":4669,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"147534bd2ccafe54e1232e1470f2864e","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Methods","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":92.0,"y":187.0},"width":156.0,"height":28.0,"page":438}],"sectionNumber":4669,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"434413517b109b1b1c798df65496a828","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Methods","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":92.0,"y":71.0},"width":212.0,"height":25.0,"page":438}],"sectionNumber":4669,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d1d85d1dca4864ba3eebfa0969235de4","type":"CBI_author","value":"Clark","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":279.9538,"y":73.119995},"width":23.250671,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"B, Chahoud I, ","textAfter":" RL, Clark","comments":null,"startOffset":359,"endOffset":364,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"96e5db8fa04cd5c202ad44668bb01c75","type":"CBI_author","value":"Petrere J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":243.17,"y":61.47998},"width":39.146805,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"P, Palmer A, ","textAfter":", Solomon H,","comments":null,"startOffset":454,"endOffset":463,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ff70f14a0f93649db6bad5504f4bb2b","type":"CBI_author","value":"Henwood S","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":492.06207,"y":73.119995},"width":39.79419,"height":10.526819,"page":439},{"topLeft":{"x":64.104,"y":61.47998},"width":6.537758,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"M, Guittin P, ","textAfter":", Kimmel C,","comments":null,"startOffset":410,"endOffset":419,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f6c14c008d1fcb1944f3c28e5a99a8b","type":"published_information","value":"Teratology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":363.3548,"y":50.080017},"width":44.933655,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":null,"textAfter":null,"comments":null,"startOffset":581,"endOffset":591,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"594f9cf0a236e8e3e7a13b9bbc25869f","type":"CBI_author","value":"Palmer A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":192.9565,"y":61.47998},"width":42.23442,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"C, Lindstrom P, ","textAfter":", Petrere J,","comments":null,"startOffset":444,"endOffset":452,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a3decdeea6386cfaddde8925c7dc313d","type":"CBI_author","value":"Solomon H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":289.77283,"y":61.47998},"width":49.903625,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"A, Petrere J, ","textAfter":", Yasuda M","comments":null,"startOffset":465,"endOffset":474,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1a22fbc328e92587257033d24a6e38b6","type":"CBI_author","value":"Kimmel C","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":78.01811,"y":61.47998},"width":46.138718,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"P, Henwood S, ","textAfter":", Lindstrom P,","comments":null,"startOffset":421,"endOffset":429,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1069c67c06e7ed547fb12b695b45f0e2","type":"CBI_author","value":"Beck S","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":108.71148,"y":73.119995},"width":29.7844,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"12 Wise D, ","textAfter":", Beltrame D,","comments":null,"startOffset":319,"endOffset":325,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cba0982caf40a10343c1be345bf8c902","type":"CBI_author","value":"Yasuda M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":347.06274,"y":61.47998},"width":45.590942,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"J, Solomon H, ","textAfter":" and York","comments":null,"startOffset":476,"endOffset":484,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618646Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9b1eac32f21b192f929370a8f4553f62","type":"CBI_author","value":"Feuston M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":401.95392,"y":73.119995},"width":44.246338,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"R, Druga, A, ","textAfter":", Guittin P,","comments":null,"startOffset":388,"endOffset":397,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1e9312af29616f29b7d413a5fec396d0","type":"CBI_author","value":"Beyer B","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":194.40735,"y":73.119995},"width":34.126984,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"S, Beltrame D, ","textAfter":", Chahoud I,","comments":null,"startOffset":339,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6132464772400ebac5d8fe770e9cc865","type":"PII","value":"(1997) 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Methods","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.8537,"y":446.51},"width":30.3443,"height":10.929359,"page":439},{"topLeft":{"x":442.18,"y":451.55},"width":7.960022,"height":9.10764,"page":439}],"sectionNumber":4669,"textBefore":"Wise et al., ","textAfter":" as far","comments":null,"startOffset":5368,"endOffset":5377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787154Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2e3ff09f332c7f2b711dbf627756fad6","type":"CBI_author","value":"Chahoud I","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":232.74341,"y":73.119995},"width":43.04117,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"D, Beyer B, ","textAfter":", Clark RL,","comments":null,"startOffset":348,"endOffset":357,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"29adfd789d4c21acc97ab7cbe8a88791","type":"CBI_author","value":"Wise D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":73.224,"y":73.119995},"width":31.338165,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"this female. 12 ","textAfter":", Beck S,","comments":null,"startOffset":311,"endOffset":317,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c11752c962fca7143f628fc0b9207ab3","type":"CBI_author","value":"Druga, A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":359.41473,"y":73.119995},"width":38.5094,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"RL, Clark R, ","textAfter":", Feuston M,","comments":null,"startOffset":378,"endOffset":386,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"469b977a389d9b3f5116f14eb50f280f","type":"CBI_author","value":"Clark R,","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":322.86154,"y":73.119995},"width":34.90384,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"I, Clark RL, ","textAfter":" Druga, A,","comments":null,"startOffset":369,"endOffset":377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"11ade37c2057f6d97dd155bad5074bad","type":"CBI_author","value":"Guittin P","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.36948,"y":73.119995},"width":37.463623,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"A, Feuston M, ","textAfter":", Henwood S,","comments":null,"startOffset":399,"endOffset":408,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618647Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75bf78df150231d94fb192e774cc29b9","type":"CBI_author","value":"Lindstrom P","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":131.49335,"y":61.47998},"width":53.877625,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"S, Kimmel C, ","textAfter":", Palmer A,","comments":null,"startOffset":431,"endOffset":442,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"33ef776ad7c3a08b33a4e2aade83205d","type":"CBI_author","value":"Wise","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Methods","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.79,"y":446.51},"width":24.250244,"height":10.929359,"page":439}],"sectionNumber":4669,"textBefore":"the glossary of ","textAfter":" et al.,","comments":null,"startOffset":5355,"endOffset":5359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"07de84469e357fd7991251f6c52b007d","type":"CBI_author","value":"Beltrame D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":142.62529,"y":73.119995},"width":47.513214,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"D, Beck S, ","textAfter":", Beyer B,","comments":null,"startOffset":327,"endOffset":337,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65aadf77c40c5310246c20cd1641b82c","type":"CBI_author","value":"York R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":417.80865,"y":61.47998},"width":34.007446,"height":10.526819,"page":439}],"sectionNumber":4670,"textBefore":"Yasuda M and ","textAfter":". Terminology of","comments":null,"startOffset":489,"endOffset":495,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1f6c14c008d1fcb1944f3c28e5a99a8b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"873a38624038d7657933b3d2f59f6b21","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross necropsy observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":65.79999},"width":28.566887,"height":10.929359,"page":440}],"sectionNumber":4697,"textBefore":null,"textAfter":" necropsy observations","comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c016b51de3dd5d7c25aca889dc1fab9","type":"PII","value":"125 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.09,"y":545.63},"width":14.619995,"height":10.0905,"page":440},{"topLeft":{"x":315.79,"y":545.63},"width":10.059998,"height":10.0905,"page":440}],"sectionNumber":4678,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787155Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"46cd2af6fb7e52942a70fb8c34890ea9","type":"PII","value":"75 29","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.37,"y":601.82},"width":10.059998,"height":10.0905,"page":440},{"topLeft":{"x":315.79,"y":601.82},"width":10.059998,"height":10.0905,"page":440}],"sectionNumber":4676,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787155Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"706041645e6b89c6cb6cbc3fed1ce0cd","type":"PII","value":"84 14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.37,"y":573.71},"width":10.059998,"height":10.0905,"page":440},{"topLeft":{"x":315.79,"y":573.71},"width":10.059998,"height":10.0905,"page":440}],"sectionNumber":4677,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787155Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"02cf2417f8f2345bf5316c4fccb12274","type":"PII","value":"67 14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.37,"y":624.62},"width":10.059998,"height":10.0905,"page":440},{"topLeft":{"x":315.79,"y":624.62},"width":10.059998,"height":10.0905,"page":440}],"sectionNumber":4675,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618648Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787155Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6d47fb249c43a1672a7fc480c42f8804","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Gross necropsy observations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.68799,"y":715.94},"width":28.434402,"height":10.929359,"page":441}],"sectionNumber":4697,"textBefore":"treatment. Table 6.8.1-11: ","textAfter":" necropsy findings","comments":null,"startOffset":231,"endOffset":236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f3988e16262381abd63249f3ef20f0e","type":"PII","value":"213 248 252 232","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: during days 6 to 28 of gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.69,"y":569.63},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":328.51,"y":569.63},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":408.43,"y":569.63},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":488.38,"y":569.63},"width":14.619995,"height":10.0905,"page":442}],"sectionNumber":4712,"textBefore":null,"textAfter":null,"comments":null,"startOffset":33,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787155Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d12998e4748ad9d8335fc184757e811b","type":"PII","value":"40 100 250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: during days 6 to 28 of gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":330.79,"y":723.26},"width":10.059998,"height":10.018499,"page":442},{"topLeft":{"x":408.43,"y":723.26},"width":14.619995,"height":10.018499,"page":442},{"topLeft":{"x":488.38,"y":723.26},"width":14.619995,"height":10.018499,"page":442}],"sectionNumber":4698,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787156Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f4c464e5570b3623c81a950e5dfe7dbf","type":"PII","value":"197 229 226 216","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: during days 6 to 28 of gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.69,"y":547.91},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":328.51,"y":547.91},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":408.43,"y":547.91},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":488.38,"y":547.91},"width":14.619995,"height":10.0905,"page":442}],"sectionNumber":4714,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787156Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c9f016e8ffbefc4f3923f50f30f9a309","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: during days 6 to 28 of gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.69,"y":395.97},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":328.51,"y":395.97},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":408.43,"y":395.97},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":488.38,"y":395.97},"width":14.619995,"height":10.0905,"page":442}],"sectionNumber":4728,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787156Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e907e88280c4ef36c9eb393f10551685","type":"PII","value":"97 105 120 114","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: during days 6 to 28 of gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.97,"y":341.73},"width":10.059998,"height":10.0905,"page":442},{"topLeft":{"x":328.51,"y":341.73},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":408.43,"y":341.73},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":488.38,"y":341.73},"width":14.619995,"height":10.0905,"page":442}],"sectionNumber":4733,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787156Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9568d87c747491deb040b85bd47f1c4","type":"PII","value":"87 107 87 86","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: during days 6 to 28 of gestation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.97,"y":374.25},"width":10.059998,"height":10.0905,"page":442},{"topLeft":{"x":328.51,"y":374.25},"width":14.619995,"height":10.0905,"page":442},{"topLeft":{"x":410.71,"y":374.25},"width":10.059998,"height":10.0905,"page":442},{"topLeft":{"x":490.66,"y":374.25},"width":10.059998,"height":10.0905,"page":442}],"sectionNumber":4730,"textBefore":null,"textAfter":null,"comments":null,"startOffset":17,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787156Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2f5626127fd4c86fff5dd84962e20402","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-13: Incidence of external malformations and variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":292.61,"y":614.42},"width":14.619995,"height":10.0905,"page":443},{"topLeft":{"x":362.11,"y":614.42},"width":14.619995,"height":10.0905,"page":443},{"topLeft":{"x":431.59,"y":614.42},"width":14.619995,"height":10.0905,"page":443},{"topLeft":{"x":500.98,"y":614.42},"width":14.619965,"height":10.0905,"page":443}],"sectionNumber":4748,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618649Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bcdd8323eebc30098326e2da8f9b2b10","type":"PII","value":"40 100 250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-13: Incidence of external malformations and variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":367.51,"y":648.62},"width":10.059998,"height":10.018499,"page":443},{"topLeft":{"x":434.71,"y":648.62},"width":14.619995,"height":10.018499,"page":443},{"topLeft":{"x":497.26,"y":648.62},"width":14.619995,"height":10.018499,"page":443}],"sectionNumber":4745,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"263a6a263fbf048772a45662f2f51a62","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-13: Incidence of external malformations and variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":292.61,"y":625.22},"width":14.619995,"height":10.0905,"page":443},{"topLeft":{"x":362.11,"y":625.22},"width":14.619995,"height":10.0905,"page":443},{"topLeft":{"x":431.59,"y":625.22},"width":14.619995,"height":10.0905,"page":443},{"topLeft":{"x":500.98,"y":625.22},"width":14.619965,"height":10.0905,"page":443}],"sectionNumber":4747,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5d7bd9fbe0d876d031c26c72ab4d5293","type":"PII","value":"40 100 250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-14: Incidence of visceral (soft tissue) malformations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.07,"y":735.98},"width":10.059998,"height":10.018499,"page":445},{"topLeft":{"x":424.15,"y":735.98},"width":14.619995,"height":10.018499,"page":445},{"topLeft":{"x":493.66,"y":735.98},"width":14.619995,"height":10.018499,"page":445}],"sectionNumber":4778,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e38ae9bd30b34da4098d072d8ff23fba","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-14: Incidence of visceral (soft tissue) malformations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.17,"y":712.46},"width":14.619995,"height":10.0905,"page":445},{"topLeft":{"x":351.67,"y":712.46},"width":14.619995,"height":10.0905,"page":445},{"topLeft":{"x":421.03,"y":712.46},"width":14.619995,"height":10.0905,"page":445},{"topLeft":{"x":490.54,"y":712.46},"width":14.619995,"height":10.0905,"page":445}],"sectionNumber":4780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3fff966473f26326911c176924d8eb61","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-14: Incidence of visceral (soft tissue) malformations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.17,"y":701.66},"width":14.619995,"height":10.0905,"page":445},{"topLeft":{"x":351.67,"y":701.66},"width":14.619995,"height":10.0905,"page":445},{"topLeft":{"x":421.03,"y":701.66},"width":14.619995,"height":10.0905,"page":445},{"topLeft":{"x":490.54,"y":701.66},"width":14.619995,"height":10.0905,"page":445}],"sectionNumber":4781,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a1a316c2c64f648d824fcc0e66adca89","type":"PII","value":"40 100 250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-15: Incidence of visceral (soft tissue) variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.07,"y":736.22},"width":10.059998,"height":10.0905,"page":446},{"topLeft":{"x":424.15,"y":736.22},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":493.66,"y":736.22},"width":14.619995,"height":10.0905,"page":446}],"sectionNumber":4841,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787157Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"778447ec689ca308f4422a8a3806927d","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-15: Incidence of visceral (soft tissue) variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.17,"y":712.46},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":351.67,"y":712.46},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":421.03,"y":712.46},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":490.54,"y":712.46},"width":14.619995,"height":10.0905,"page":446}],"sectionNumber":4843,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787158Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31a703667729fc2d7082c260192c194c","type":"PII","value":"184 212 207 200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-15: Incidence of visceral (soft tissue) variations","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.17,"y":701.66},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":351.67,"y":701.66},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":421.03,"y":701.66},"width":14.619995,"height":10.0905,"page":446},{"topLeft":{"x":490.54,"y":701.66},"width":14.619995,"height":10.0905,"page":446}],"sectionNumber":4844,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787158Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3d812b1571bc692f83db61bada108f1a","type":"CBI_author","value":"Fabian E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":391.1452,"y":640.94},"width":40.357605,"height":11.017679,"page":447}],"sectionNumber":4885,"textBefore":"bw. (Schneider S, ","textAfter":" And Mellert","comments":null,"startOffset":2254,"endOffset":2262,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9875667da05d1eb3499e74106bfca6ac","type":"CBI_author","value":"Mellert W","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":454.85706,"y":640.94},"width":46.551086,"height":11.017679,"page":447}],"sectionNumber":4885,"textBefore":"Fabian E And ","textAfter":", 2009) ","comments":null,"startOffset":2267,"endOffset":2276,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95e8d55e46cdd03facf250f873a9ce8e","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":372.46652,"y":515.03},"width":28.511688,"height":11.017679,"page":447}],"sectionNumber":4885,"textBefore":"studies conducted by ","textAfter":" (for which","comments":null,"startOffset":2563,"endOffset":2567,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e47555acb4839771698e372ee19b671","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":454.37234,"y":515.03},"width":41.881104,"height":11.017679,"page":447}],"sectionNumber":4885,"textBefore":"BASF (for which ","textAfter":" has coownership)","comments":null,"startOffset":2579,"endOffset":2587,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"948cd842688c0351c54224e8de15296e","type":"CBI_author","value":"Schneider S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Skeletal examination","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":332.69943,"y":640.94},"width":53.92575,"height":11.017679,"page":447}],"sectionNumber":4885,"textBefore":"mg/kg bw. (","textAfter":", Fabian E","comments":null,"startOffset":2241,"endOffset":2252,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70d3a96b523b8dca22929905abf1e7cb","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Skeletal examination","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":390.1483,"y":527.63},"width":28.511688,"height":11.017679,"page":447}],"sectionNumber":4885,"textBefore":"studies undertaken by ","textAfter":" under the","comments":null,"startOffset":2470,"endOffset":2474,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cef548b2d17f8f6260f869ce6171be85","type":"CBI_author","value":"Sokolowski","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.71,"y":679.22},"width":43.434998,"height":10.0905,"page":448}],"sectionNumber":4879,"textBefore":null,"textAfter":", A (2014a).","comments":null,"startOffset":88,"endOffset":98,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be3bcf0eaf584dcb7c163719ea9e66f5","type":"CBI_author","value":"Jewkes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Toxicological reference values for the metabolite SYN508272:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.09476,"y":320.85004},"width":32.73999,"height":11.017679,"page":448}],"sectionNumber":4888,"textBefore":"TRA (MacDonald and ","textAfter":" (2015); see","comments":null,"startOffset":794,"endOffset":800,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618651Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"954bf05f1f43f9caed99038ae355cf47","type":"CBI_author","value":"Dymarkowska, K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.71,"y":511.66998},"width":64.324005,"height":10.0905,"page":448}],"sectionNumber":4883,"textBefore":null,"textAfter":" (2015). Report","comments":null,"startOffset":182,"endOffset":196,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a7eea3fdbd6d1be0ea09ec827e453c39","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Toxicological reference values for the metabolite SYN508272:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":137.16656,"y":184.38},"width":25.870132,"height":10.526819,"page":448}],"sectionNumber":4886,"textBefore":"2009. Unpublished. (","textAfter":"-Project No.: 10A0432/099058","comments":null,"startOffset":268,"endOffset":272,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5d06d89ef6193f00c1fd1024be70c40c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.15,"y":532.79},"width":34.470978,"height":10.0905,"page":448}],"sectionNumber":4882,"textBefore":"No. Harlan 1602600. ","textAfter":" File No.","comments":null,"startOffset":115,"endOffset":123,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"053ead415fcae9111e8f5c2129fc28c6","type":"CBI_author","value":"MacDonald","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Toxicological reference values for the metabolite SYN508272:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":329.3732,"y":320.85004},"width":53.064606,"height":11.017679,"page":448}],"sectionNumber":4888,"textBefore":"8.1% TRA (","textAfter":" and Jewkes","comments":null,"startOffset":780,"endOffset":789,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7e7be6ce12d1b24ab476d59cb5c16817","type":"CBI_author","value":"Dony, E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":388.15,"y":553.55},"width":30.942993,"height":10.0905,"page":448}],"sectionNumber":4882,"textBefore":null,"textAfter":" (2014a). Report","comments":null,"startOffset":71,"endOffset":78,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5efe0f10f1c82b200e2f03eda1c35064","type":"CBI_author","value":"Bohnenberger","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.03,"y":637.34},"width":51.96695,"height":10.0905,"page":448}],"sectionNumber":4880,"textBefore":null,"textAfter":", S (2013a).","comments":null,"startOffset":78,"endOffset":90,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"273749ed73d108a8dd5dfae757bc3643","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.15,"y":616.7},"width":34.470978,"height":10.0905,"page":448}],"sectionNumber":4880,"textBefore":"No. Harlan 1555902. ","textAfter":" File No.","comments":null,"startOffset":130,"endOffset":138,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"742834279d3fc59b076a9c6143c05c1a","type":"CBI_author","value":"Cords SM","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Toxicological reference values for the metabolite SYN508272:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.7955,"y":218.94},"width":42.48343,"height":10.526819,"page":448}],"sectionNumber":4886,"textBefore":"Report: K-CA 5.8.1/08 ","textAfter":". (2009). Reg.","comments":null,"startOffset":22,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c205783b1e5acca01ea6dae1aaaf6e5d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.15,"y":700.46},"width":34.470978,"height":10.0905,"page":448}],"sectionNumber":4878,"textBefore":"Report No. 2009/1084176. ","textAfter":" File No.","comments":null,"startOffset":147,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0aa37b0a35d6d4e6bc8a94187f638059","type":"CBI_author","value":"Cords, S-M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":397.51,"y":721.22},"width":43.080994,"height":10.0905,"page":448}],"sectionNumber":4878,"textBefore":null,"textAfter":" (2009). Report","comments":null,"startOffset":103,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a2a5b6d84a58e098f5194ad7881b7b6","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Toxicological reference values for the metabolite SYN508272:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":448.0782,"y":184.38},"width":37.931763,"height":10.526819,"page":448}],"sectionNumber":4886,"textBefore":"Bioassay-Project No.: 09-BF-OT064) ","textAfter":" File No.","comments":null,"startOffset":336,"endOffset":344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e0a3e6a40647fdb1a8bd22bf41a4b2a5","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Toxicological reference values for the metabolite SYN508272:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":107.58002},"width":82.53038,"height":11.017679,"page":448}],"sectionNumber":4888,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1313,"endOffset":1330,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb833af623a26fad74589b01fb179a93","type":"CBI_author","value":"Wollny, H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":397.51,"y":595.46},"width":38.890015,"height":10.0905,"page":448}],"sectionNumber":4881,"textBefore":null,"textAfter":" (2013a). Report","comments":null,"startOffset":110,"endOffset":119,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1af4b99fd133bc94ac164fc161698837","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":397.63,"y":490.91},"width":34.470978,"height":10.0905,"page":448}],"sectionNumber":4883,"textBefore":"Charles River 35015. ","textAfter":" File No.","comments":null,"startOffset":237,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"067367e23dc50e61c4faf0435eb4ab9c","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":415.51,"y":501.35},"width":50.653015,"height":10.0905,"page":448}],"sectionNumber":4883,"textBefore":"(2015). Report No. ","textAfter":" 35015. Syngenta","comments":null,"startOffset":216,"endOffset":229,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e6298bcd327eb42b6760f8f12b6eb1e7","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.83399,"y":543.23},"width":30.034004,"height":10.0905,"page":448}],"sectionNumber":4882,"textBefore":"Assay in Bone ","textAfter":" Cells of","comments":null,"startOffset":38,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9dc7c3344dc034b1119df3c553c9d1cf","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.15,"y":658.58},"width":34.470978,"height":10.0905,"page":448}],"sectionNumber":4879,"textBefore":"No. Harlan 1555901. ","textAfter":" File No.","comments":null,"startOffset":138,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b80c2550be170c27dd3720817863e08d","type":"CBI_address","value":"Bioassay Labor fuer biologische Analytik GmbH INF 515, 69120 Heidelberg, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Toxicological reference values for the metabolite SYN508272:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":239.09,"y":207.41998},"width":284.0635,"height":10.526819,"page":448},{"topLeft":{"x":133.82,"y":195.89996},"width":88.34918,"height":10.526819,"page":448}],"sectionNumber":4886,"textBefore":"Study in Rats. ","textAfter":". Laboratory Report","comments":null,"startOffset":119,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d558ae2d0047f97faa08b3fa01a215cd","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.15,"y":574.79},"width":34.470978,"height":10.0905,"page":448}],"sectionNumber":4881,"textBefore":"No. Harlan 1555903. ","textAfter":" File No.","comments":null,"startOffset":156,"endOffset":164,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2235bacb33337ce8fc910413519f43a6","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":259.64996},"width":28.467995,"height":10.018499,"page":449}],"sectionNumber":4890,"textBefore":null,"textAfter":null,"comments":null,"startOffset":110,"endOffset":117,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d194f7b31d21fa87c48ef5d364864002","type":"CBI_author","value":"Class","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":383.78934,"y":753.5},"width":24.846375,"height":11.017679,"page":449}],"sectionNumber":4889,"textBefore":"the Acute Toxic ","textAfter":" method, doses","comments":null,"startOffset":89,"endOffset":94,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47e0aafcf3f84da2f6a65aea154ecf95","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.24207,"y":728.18},"width":15.940002,"height":10.0905,"page":450}],"sectionNumber":4891,"textBefore":"/ Cri:WI (","textAfter":")","comments":null,"startOffset":59,"endOffset":62,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d94f3fde4f2b89fb82462fd5ee45d1d7","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":652.46},"width":34.525024,"height":10.0905,"page":450}],"sectionNumber":4891,"textBefore":"Services, 67122 Altrip, ","textAfter":") ad libitum","comments":null,"startOffset":353,"endOffset":360,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f4239b8609720dc36a72391f4e8c8e44","type":"PII","value":"187-205","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":377.75903,"y":715.34},"width":31.121979,"height":10.0905,"page":450}],"sectionNumber":4891,"textBefore":"weeks old / ","textAfter":" g","comments":null,"startOffset":130,"endOffset":137,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787162Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"65f17bf6b16cc98fc393eb5e6fc364ba","type":"CBI_address","value":"Cri","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":242.54301,"y":728.18},"width":12.501999,"height":10.0905,"page":450}],"sectionNumber":4891,"textBefore":"Wistar / ","textAfter":":WI (Han)","comments":null,"startOffset":51,"endOffset":54,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21d0bfc29d0462d01f1d9d0b26fe65f3","type":"CBI_address","value":"Charles River Wig a GmbH, Sandhofer Weg 7, 97633 Sulzfeld, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":702.5},"width":246.68217,"height":10.0905,"page":450}],"sectionNumber":4891,"textBefore":null,"textAfter":null,"comments":null,"startOffset":147,"endOffset":213,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d1b13927c56d79e0ad5bdb2351eac70d","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"application scheme and mortality data","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":187.14001},"width":82.53038,"height":11.017679,"page":451}],"sectionNumber":4909,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1305,"endOffset":1322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf56e101a965444506d21e98d14b3bf3","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH, In den Leppsteinswiesen 19, 64380 Rossdorf Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: application scheme and mortality data","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":324.67,"y":288.09003},"width":198.56583,"height":10.526819,"page":451},{"topLeft":{"x":133.82,"y":276.57},"width":193.91751,"height":10.526819,"page":451}],"sectionNumber":4907,"textBefore":"Reverse Mutation Assay. ","textAfter":". Laboratory Report","comments":null,"startOffset":124,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"359432e3cad2020c2f95d997afb80d40","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: application scheme and mortality data","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":248.51549,"y":265.05},"width":38.051285,"height":10.526819,"page":451}],"sectionNumber":4907,"textBefore":"March 2014. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":282,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2084f64bfcef53dd0c92de3dc64e636e","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: application scheme and mortality data","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":205.72363,"y":299.61},"width":64.873474,"height":10.526819,"page":451}],"sectionNumber":4907,"textBefore":"Report: K-CA 5.8.1/09 ","textAfter":" (2014a). SYN508272:","comments":null,"startOffset":22,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2af2e9163f1c3d786cf3f4c624355f83","type":"CBI_author","value":"Cords SM","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"application scheme and mortality data","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":455.48944,"y":351.45},"width":45.97693,"height":11.017679,"page":451}],"sectionNumber":4909,"textBefore":"Wistar rats. (","textAfter":", 2009) Guidelines:","comments":null,"startOffset":1142,"endOffset":1150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618655Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3e6780bdaf89412257f495e22153253","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":452.03},"width":25.398994,"height":10.018499,"page":452}],"sectionNumber":4911,"textBefore":null,"textAfter":null,"comments":null,"startOffset":77,"endOffset":83,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"09fbe2ee3d74980c79f99f85ca5ae7de","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":426.11},"width":82.53038,"height":11.017679,"page":455}],"sectionNumber":4935,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2518,"endOffset":2535,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3fcf69ba4e848b7fbd671ce0bc78ce3b","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":247.13,"y":527.03},"width":275.98572,"height":10.526819,"page":455},{"topLeft":{"x":133.82,"y":515.51},"width":199.09695,"height":10.526819,"page":455}],"sectionNumber":4933,"textBefore":"Lymphocytes In Vitro. ","textAfter":". Laboratory Report","comments":null,"startOffset":116,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be665cdc84786b741b1ae12cad53faca","type":"CBI_author","value":"Sokolowski A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":432.89944,"y":590.42},"width":63.662994,"height":11.017679,"page":455}],"sectionNumber":4935,"textBefore":"mutation assay. (","textAfter":", 2014a) Guidelines:","comments":null,"startOffset":2334,"endOffset":2346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92b9383ecd74953d8de3b783ebfd8a5c","type":"hint_only","value":"purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2723,"y":225.41998},"width":27.26413,"height":11.017679,"page":455}],"sectionNumber":4936,"textBefore":null,"textAfter":null,"comments":null,"startOffset":723,"endOffset":729,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f4def9e120a25d737434047bbece789c","type":"CBI_author","value":"Bohnenberger S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.25168,"y":538.55},"width":68.14038,"height":10.526819,"page":455}],"sectionNumber":4933,"textBefore":"Report: K-CA 5.8.1/10 ","textAfter":" (2013a). SYN508272:","comments":null,"startOffset":22,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b33c61918b2537a5557d934b95ade64b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":278.57,"y":503.99},"width":38.05127,"height":10.526819,"page":455}],"sectionNumber":4933,"textBefore":"December, 2013. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":293,"endOffset":301,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d34c9cf971d60fc5bedd690d375b017","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":412.05},"width":28.467995,"height":10.018499,"page":456}],"sectionNumber":4937,"textBefore":null,"textAfter":null,"comments":null,"startOffset":68,"endOffset":75,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618656Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0ca37ce852c0707766da6b87d8ef3015","type":"PII","value":"30 2016","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.58002,"y":386.61},"width":30.196014,"height":10.0905,"page":456}],"sectionNumber":4937,"textBefore":null,"textAfter":null,"comments":null,"startOffset":140,"endOffset":147,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618657Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787163Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d40803d66f7383513590a61260137c93","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":121.66656,"y":716.18},"width":26.513435,"height":11.017679,"page":457}],"sectionNumber":4945,"textBefore":"performed according to ","textAfter":" et al.","comments":null,"startOffset":521,"endOffset":525,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618657Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53e79784386faece836d4d9da194f3b8","type":"CBI_address","value":"Nunc GmbH & Co. KG, 65203 Wiesbaden, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Details of slide preparation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":323.738,"y":94.02399},"width":208.92984,"height":11.017679,"page":457},{"topLeft":{"x":64.104,"y":81.400024},"width":41.892143,"height":11.017679,"page":457}],"sectionNumber":4966,"textBefore":"culture flasks (","textAfter":"). The culture","comments":null,"startOffset":182,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618657Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"67b6a81744c43dae3f43ca5698b00787","type":"CBI_address","value":"Nunc GmbH & Co. KG, 65203 Wiesbaden, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Details of slide preparation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":416.58826,"y":544.91},"width":116.08203,"height":11.017679,"page":458},{"topLeft":{"x":64.104,"y":532.31},"width":128.63345,"height":11.017679,"page":458}],"sectionNumber":4966,"textBefore":"culture flasks (","textAfter":"). The culture","comments":null,"startOffset":1146,"endOffset":1190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618657Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f19d972dced7ce9ae94e036144801c54","type":"CBI_address","value":"Fluka, 89203 Neu-Ulm, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Details of slide preparation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":255.0077,"y":456.35},"width":153.529,"height":11.017679,"page":458}],"sectionNumber":4966,"textBefore":"harvesting, colcemid (","textAfter":") was added","comments":null,"startOffset":1590,"endOffset":1619,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618657Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28e5b444223b198f651598e54e4f30b8","type":"CBI_address","value":"MERCK, 64293 Darmstadt, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Details of slide preparation","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":126.46896,"y":355.17},"width":168.0904,"height":11.017679,"page":458}],"sectionNumber":4966,"textBefore":"with Giemsa (","textAfter":").","comments":null,"startOffset":2360,"endOffset":2391,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40e374e48bf717a8e9c5092cf1dbb0b4","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":87.243835,"y":196.97998},"width":28.42337,"height":11.017679,"page":458}],"sectionNumber":4972,"textBefore":"gap-type aberrations. The ","textAfter":" Exact Probability","comments":null,"startOffset":222,"endOffset":228,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"081aed6f8d23221e32342d77960426be","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":422.3713,"y":708.74},"width":28.5448,"height":11.017679,"page":459}],"sectionNumber":4972,"textBefore":"significance using the ","textAfter":" Exact Probability","comments":null,"startOffset":1439,"endOffset":1445,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc6c20eecb156ad8b01233940c7fd918","type":"CBI_author","value":"Bohnenberger S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":424.37946,"y":50.440002},"width":72.28528,"height":11.017679,"page":460}],"sectionNumber":4975,"textBefore":"evaluable concentrations. (","textAfter":", 2013a) Guidelines:","comments":null,"startOffset":2870,"endOffset":2884,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f8d2db48e24320328b91f4a2caa1703","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":499.0},"width":336.0,"height":267.0,"page":460}],"sectionNumber":4975,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"903cef08cdc3c929ad58a5661580379b","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":208.0},"width":344.0,"height":278.0,"page":460}],"sectionNumber":4975,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"983b5cf4b349b5f8040b227e6706e887","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.56978,"y":626.54},"width":82.552475,"height":11.017679,"page":461}],"sectionNumber":4975,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3018,"endOffset":3035,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"828748c432bc3eb94b66a395a8398f39","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":360.55,"y":691.82},"width":38.05127,"height":10.526819,"page":461}],"sectionNumber":4973,"textBefore":"December 2013. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":320,"endOffset":328,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618658Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c603d6c1a3b5f2f0d6ca88159f047a04","type":"hint_only","value":"Purity","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.464,"y":182.82},"width":25.398994,"height":10.018499,"page":461}],"sectionNumber":4977,"textBefore":null,"textAfter":null,"comments":null,"startOffset":116,"endOffset":122,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"28bbb5b583920f476adc3f4c611c1788","type":"CBI_author","value":"Wollny H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.60028,"y":726.38},"width":43.290146,"height":10.526819,"page":461}],"sectionNumber":4973,"textBefore":"Report: K-CA 5.8.1/11 ","textAfter":" (2013a). SYN508272:","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"029ad8c3de1e92ed6e0dc0d992a5ef39","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":363.25012,"y":714.86},"width":159.74255,"height":10.526819,"page":461},{"topLeft":{"x":133.82,"y":703.34},"width":288.3263,"height":10.526819,"page":461}],"sectionNumber":4973,"textBefore":"Lymphoma L5178Y Cells. ","textAfter":". Laboratory Report","comments":null,"startOffset":144,"endOffset":244,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c4891457c2fc20521011e45d72b74ec3","type":"PII","value":"30 2016","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.34001,"y":145.97998},"width":30.196,"height":10.0905,"page":461}],"sectionNumber":4977,"textBefore":"June ","textAfter":null,"comments":null,"startOffset":231,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787165Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b5a631595e28d124dd43b1e517ce352d","type":"CBI_address","value":"SYSTAT Software, Inc., 501, Canal Boulevard, Suite C, Richmond, CA 94804, USA","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Statistical Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":209.91273,"y":577.55},"width":322.6173,"height":11.017679,"page":463},{"topLeft":{"x":64.104,"y":564.83},"width":56.376625,"height":11.017679,"page":463}],"sectionNumber":5000,"textBefore":" 11 (","textAfter":") statistics software.","comments":null,"startOffset":157,"endOffset":234,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b4d33b3527f55ea844cef651f1c8ade","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Mutation assay:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":192.31506,"y":629.9},"width":38.160767,"height":10.526819,"page":465}],"sectionNumber":5002,"textBefore":"June, 2014, Unpublished. ","textAfter":" File No.SYN508272_10910","comments":null,"startOffset":274,"endOffset":282,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18974b47d838396c08973be136732f76","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Mutation assay:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.90717,"y":664.34},"width":33.34012,"height":10.526819,"page":465}],"sectionNumber":5002,"textBefore":"Assay in Bone ","textAfter":" Cells of","comments":null,"startOffset":77,"endOffset":83,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a4093a23f6c4e4255eed1980da69bbe","type":"CBI_author","value":"Dony E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Mutation assay:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.92496,"y":664.34},"width":35.013382,"height":10.526819,"page":465}],"sectionNumber":5002,"textBefore":"Report: K-CA 5.8.1/12 ","textAfter":" (2014a). SYN508272:","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"00cedb9beb2ce3371f7de1ecf6d0eb15","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Mutation assay:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":551.99},"width":82.53038,"height":11.017679,"page":465}],"sectionNumber":5004,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4390,"endOffset":4407,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cc9aad76c386fdeda8c5c3a24eacfc89","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Mutation assay:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":175.34,"y":652.82},"width":347.87778,"height":10.526819,"page":465},{"topLeft":{"x":133.82,"y":641.42},"width":114.21535,"height":10.526819,"page":465}],"sectionNumber":5002,"textBefore":"of the Rat. ","textAfter":". Laboratory Report","comments":null,"startOffset":102,"endOffset":202,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac21a502f95fee7a1505db62195712fc","type":"CBI_author","value":"Wollny H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mutation assay:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.88943,"y":716.18},"width":44.718384,"height":11.017679,"page":465}],"sectionNumber":5004,"textBefore":"lymphoma assay. (","textAfter":", 2013a) Guidelines:","comments":null,"startOffset":4225,"endOffset":4233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7269087bd1e26dcca75b4f2738d057f7","type":"PII","value":"23-65","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":258.614,"y":383.61},"width":22.092987,"height":10.0905,"page":466}],"sectionNumber":5012,"textBefore":"Temperature: 19-25°C Humidity: ","textAfter":"% % Air","comments":null,"startOffset":410,"endOffset":415,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787167Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7440f238cd75acd4d27955900532f894","type":"CBI_address","value":"Harlan Laboratories B.V.; Postbus 6174; 5960 AD Horst / The Netherlands","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":219.41,"y":460.55},"width":274.65707,"height":10.0905,"page":466}],"sectionNumber":5012,"textBefore":null,"textAfter":null,"comments":null,"startOffset":161,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a5b0a5a7376c1cddaee95b9f6911149","type":"PII","value":"30 2016","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.22002,"y":625.22},"width":30.196,"height":10.0905,"page":466}],"sectionNumber":5006,"textBefore":null,"textAfter":null,"comments":null,"startOffset":216,"endOffset":223,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618661Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787167Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4f0adb0835a119fed18f88f34863bea7","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":664.22},"width":28.467995,"height":10.018499,"page":466}],"sectionNumber":5006,"textBefore":null,"textAfter":null,"comments":null,"startOffset":79,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618661Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"51b020ea04ce1dbeb8311efa8b6007f8","type":"CBI_author","value":"Whitney","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Slide Preparation:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.99,"y":351.45},"width":39.051758,"height":11.017679,"page":467}],"sectionNumber":5028,"textBefore":"methods (nonparametric Mann-","textAfter":" test) were","comments":null,"startOffset":1496,"endOffset":1503,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618661Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"647b7b330f553d24ad7971bdd0c384fe","type":"CBI_author","value":"Mann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Slide Preparation:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":383.48022,"y":351.45},"width":26.789429,"height":11.017679,"page":467}],"sectionNumber":5028,"textBefore":"Statistical methods (nonparametric ","textAfter":"-Whitney test) were","comments":null,"startOffset":1491,"endOffset":1495,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618661Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6dc75500a438f54d49207051028cd33","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":402.0},"width":242.0,"height":159.0,"page":468}],"sectionNumber":5029,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618661Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"546c93aa216667c9051b7038fa98b891","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":598.0},"width":242.0,"height":56.0,"page":468}],"sectionNumber":5029,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"34f942fb9d516fce4ec875e428d00782","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":265.0},"width":242.0,"height":100.0,"page":468}],"sectionNumber":5029,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2f7861771ac551f84bf35332bda258b6","type":"CBI_author","value":"Mann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Micronucleus test:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":113.88336,"y":576.35},"width":26.78946,"height":11.017679,"page":469}],"sectionNumber":5032,"textBefore":"of the nonparametric ","textAfter":"-Whitney test Table","comments":null,"startOffset":2523,"endOffset":2527,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a0a6bd6dbe19cf75b18376273f104ba1","type":"CBI_author","value":"Whitney","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Micronucleus test:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":143.18,"y":576.35},"width":39.010742,"height":11.017679,"page":469}],"sectionNumber":5032,"textBefore":"the nonparametric Mann-","textAfter":" test Table","comments":null,"startOffset":2528,"endOffset":2535,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e3cff629243998dec62a6c050e521cd5","type":"CBI_author","value":"Dony E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Micronucleus test:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":461.60944,"y":100.26001},"width":34.85968,"height":11.017679,"page":469}],"sectionNumber":5032,"textBefore":"micronucleus assay. (","textAfter":", 2014a) Guidelines:","comments":null,"startOffset":3101,"endOffset":3107,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4604a3eda1367e6bb122b97994ae6987","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Micronucleus test:","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":219.0},"width":289.0,"height":128.0,"page":469}],"sectionNumber":5032,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f9d10fcb8fa44171a5d8920f16134c0c","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Micronucleus test:","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":372.0},"width":296.0,"height":179.0,"page":469}],"sectionNumber":5032,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"77f0de12cc2b7d2ec0525164e6c552fc","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Micronucleus test:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":216.59361,"y":651.26},"width":82.552475,"height":11.017679,"page":470}],"sectionNumber":5032,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3219,"endOffset":3236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618662Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c2245c891cbd4850c12ab8faa5d4a7a2","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Micronucleus test:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":716.42},"width":38.051224,"height":10.526819,"page":470}],"sectionNumber":5030,"textBefore":"November 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":262,"endOffset":270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"72c498c38ac5171a503e37b2274a351f","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.30302,"y":527.27},"width":19.337448,"height":11.017679,"page":470}],"sectionNumber":5033,"textBefore":"and 5 females ","textAfter":" Wistar rats","comments":null,"startOffset":179,"endOffset":182,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb051bcedaaa5157c0d66b721a3a6c6f","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":343.6258,"y":527.27},"width":19.337433,"height":11.017679,"page":470}],"sectionNumber":5033,"textBefore":"Wistar rats (Crl:WI(","textAfter":")) were fed","comments":null,"startOffset":203,"endOffset":206,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bf20c4e7b30a50e997f0463909f02e8","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":308.8498,"y":527.27},"width":15.0980835,"height":11.017679,"page":470}],"sectionNumber":5033,"textBefore":"Wistar rats (","textAfter":":WI(Han)) were fed","comments":null,"startOffset":196,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb536f803a8a66158309830eff464ff8","type":"CBI_address","value":"Charles River Laboratories, Preclinical Services, Tranent (PCS-EDI) Edinburgh, EH33 2NE, United Kingdom.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Micronucleus test:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":158.40213,"y":739.46},"width":364.94888,"height":10.526819,"page":470},{"topLeft":{"x":133.82,"y":727.94},"width":98.78728,"height":10.526819,"page":470}],"sectionNumber":5030,"textBefore":"Study in Rats. ","textAfter":" Laboratory Report","comments":null,"startOffset":97,"endOffset":201,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"57ae65df74ac193fce32c5863ecdea00","type":"CBI_author","value":"Dymarkowska K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Micronucleus test:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.5126,"y":750.98},"width":72.55264,"height":10.526819,"page":470}],"sectionNumber":5030,"textBefore":"Report: K-CA 5.8.1/13 ","textAfter":" (2015). SYN508272:","comments":null,"startOffset":22,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e690ca587f1ff5ed86dcdbe9bcf54350","type":"PII","value":"39-83","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.826,"y":94.62402},"width":22.081009,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":"17-23 °C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":676,"endOffset":681,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618663Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787169Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4d485a6793556d1abf4300c80ada7398","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.61,"y":227.10004},"width":15.940002,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":null,"textAfter":" Wistar (Crl:WI(Han))","comments":null,"startOffset":51,"endOffset":54,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d132390a423adc8d67cc5e5f7c9cf7ae","type":"CBI_address","value":"Special Diet Services Limited, Witham, Essex, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":385.214,"y":142.14001},"width":110.70111,"height":10.0905,"page":471},{"topLeft":{"x":211.61,"y":131.70001},"width":72.83803,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":"(Ground) Diet (","textAfter":") ad libitum","comments":null,"startOffset":520,"endOffset":568,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0e5c27592203d25f93cc293db8c34e8e","type":"PII","value":"17-23","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.325,"y":106.02002},"width":22.098969,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":"Temperature: ","textAfter":" °C Humidity:","comments":null,"startOffset":657,"endOffset":662,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78717Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"229bf12e8ab06d050b4810651a7c957e","type":"CBI_address","value":"Special Diets Services Limited, Witham, Essex, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":179.9688,"y":277.76996},"width":230.25676,"height":11.017679,"page":471}],"sectionNumber":5042,"textBefore":"(Ground) Diet (","textAfter":")","comments":null,"startOffset":150,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a3ec020615bea152e91aeb1dba914906","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":347.13},"width":28.467995,"height":10.018499,"page":471}],"sectionNumber":5037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dd7777c615abe341e7e7b18e8c837748","type":"PII","value":"0700-1900","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":340.12103,"y":71.91998},"width":40.316986,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":"per day from ","textAfter":null,"comments":null,"startOffset":742,"endOffset":751,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78717Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cdef79bfe9643a545b0f146f18eab464","type":"PII","value":"30 2016","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.22002,"y":318.21002},"width":30.196,"height":10.0905,"page":471}],"sectionNumber":5039,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618664Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78717Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ff3ffbf0823a99dcf66d88d6b20b5453","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":286.45407,"y":227.10004},"width":15.948975,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":"Han Wistar (Crl:WI(","textAfter":"))","comments":null,"startOffset":70,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618665Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"020ba7faa1fd0010213e2a83c91e27dd","type":"CBI_address","value":"Crl","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.014,"y":227.10004},"width":12.502014,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":"Han Wistar (","textAfter":":WI(Han))","comments":null,"startOffset":63,"endOffset":66,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618665Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"94d531fc3b9abd53f4afbc08c97cf6ad","type":"CBI_address","value":"Charles River UK Limited, Margate, Kent","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":201.29999},"width":153.1361,"height":10.0905,"page":471}],"sectionNumber":5041,"textBefore":null,"textAfter":null,"comments":null,"startOffset":178,"endOffset":217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618665Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf3b220c14eaca49aab8032b258ecadd","type":"PII","value":"10 26-30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":360.55,"y":592.82},"width":9.940002,"height":10.0905,"page":472},{"topLeft":{"x":465.1,"y":592.82},"width":22.059998,"height":10.0905,"page":472}],"sectionNumber":5047,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618665Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78717Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fbba940dd174bdebc3450811a9183650","type":"PII","value":"2000 16-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.69,"y":571.19},"width":19.044998,"height":10.0905,"page":472},{"topLeft":{"x":350.71,"y":571.19},"width":22.059998,"height":10.0905,"page":472}],"sectionNumber":5049,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":15,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618665Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787171Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"67e35a70b9850ea90d84930b4169d720","type":"PII","value":"36-40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":465.1,"y":560.27},"width":22.059998,"height":10.0905,"page":472}],"sectionNumber":5050,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618665Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787171Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e7457e0773899e88ef25b3eaf64c8678","type":"PII","value":"21-25","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":465.1,"y":603.74},"width":22.059998,"height":10.0905,"page":472}],"sectionNumber":5046,"textBefore":null,"textAfter":null,"comments":null,"startOffset":14,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618666Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787171Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3402bc4050fda9f9703d938f43f6351f","type":"PII","value":"500 11-15 31-35","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.85,"y":581.99},"width":14.619995,"height":10.0905,"page":472},{"topLeft":{"x":350.71,"y":581.99},"width":22.059998,"height":10.0905,"page":472},{"topLeft":{"x":465.1,"y":581.99},"width":22.059998,"height":10.0905,"page":472}],"sectionNumber":5048,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618666Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787171Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"36c6a5e3e2cf9db106987ecac04746df","type":"CBI_author","value":"Large","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Diet preparation and analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.47,"y":520.91},"width":24.127167,"height":10.526819,"page":473}],"sectionNumber":5053,"textBefore":"Monocytes Eosinophils Basophils ","textAfter":" unclassified cells","comments":null,"startOffset":3418,"endOffset":3423,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618666Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c136f93dc79320f11e61299f35083171","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Diet preparation and analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":380.85},"width":24.296455,"height":10.526819,"page":474}],"sectionNumber":5053,"textBefore":"identification Nerve, optic ","textAfter":" lesions including","comments":null,"startOffset":5771,"endOffset":5776,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618666Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8264883bcabf25b34c7343d4da0560c","type":"hint_only","value":"pathologist","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Nerve - sciatic","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":191.81471,"y":658.34},"width":49.8741,"height":11.017679,"page":475}],"sectionNumber":5054,"textBefore":null,"textAfter":null,"comments":null,"startOffset":236,"endOffset":247,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618666Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ac9f9f49c98612698e32cbdbb049817","type":"PII","value":"100 500 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-23: Intergroup comparison of cumulative body weight gain (g) (selected time points)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.94,"y":704.3},"width":14.619995,"height":10.018499,"page":476},{"topLeft":{"x":230.45,"y":704.3},"width":14.619995,"height":10.018499,"page":476},{"topLeft":{"x":282.77,"y":704.3},"width":19.044983,"height":10.018499,"page":476}],"sectionNumber":5056,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618667Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787172Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fb4155d9c40b3d20977f14388e0ce170","type":"PII","value":"100 500 2000 4000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-24: Mean Dose Received (mg/kg/day)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.29,"y":395.85},"width":14.61998,"height":10.018499,"page":476},{"topLeft":{"x":326.59,"y":395.85},"width":14.619995,"height":10.018499,"page":476},{"topLeft":{"x":405.43,"y":395.85},"width":19.044983,"height":10.018499,"page":476},{"topLeft":{"x":485.14,"y":395.85},"width":19.044983,"height":10.018499,"page":476}],"sectionNumber":5059,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618667Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787173Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c6f7da510e8715af61eb6d74f801c2fd","type":"PII","value":"100 500 4000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-23: Intergroup comparison of cumulative body weight gain (g) (selected time points)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":393.91,"y":704.3},"width":14.619995,"height":10.018499,"page":476},{"topLeft":{"x":448.42,"y":704.3},"width":14.619995,"height":10.018499,"page":476},{"topLeft":{"x":497.98,"y":704.3},"width":19.045013,"height":10.018499,"page":476}],"sectionNumber":5056,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618667Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787173Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4e5f7821286c4b6e7dc63a93c4eaa3ad","type":"PII","value":"30 36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-23: Intergroup comparison of cumulative body weight gain (g) (selected time points)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":341.71,"y":646.34},"width":10.059998,"height":10.0905,"page":476},{"topLeft":{"x":341.71,"y":632.06},"width":10.059998,"height":10.0905,"page":476}],"sectionNumber":5057,"textBefore":"9 18 20 ","textAfter":null,"comments":null,"startOffset":94,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618667Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787173Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"51ee231a8d56e991c036a6f5494ea4e1","type":"PII","value":"90-298","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-25: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":495.1,"y":205.85999},"width":26.490997,"height":10.0905,"page":477}],"sectionNumber":5065,"textBefore":"0.04-0.35 0-0.11 1.1-2.4 ","textAfter":null,"comments":null,"startOffset":557,"endOffset":563,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618668Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787173Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"89e037b9c4e55e0e91fe089d4eed5403","type":"PII","value":"113-263","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-25: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":289.37,"y":205.85999},"width":31.050995,"height":10.0905,"page":477}],"sectionNumber":5065,"textBefore":"0.05-0.26 0-0.08 1.3-2.3 ","textAfter":" -","comments":null,"startOffset":328,"endOffset":335,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618668Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787174Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"95b78a2e0a76b24ec143343fae45d0eb","type":"PII","value":"2010-2012","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":285.324,"y":165.65997},"width":40.250977,"height":10.0905,"page":477}],"sectionNumber":5075,"textBefore":"all parameters between ","textAfter":" except for","comments":null,"startOffset":5619,"endOffset":5628,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618668Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787174Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0e70b723242977a791380966df7e07aa","type":"PII","value":"100 500 4000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-25: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.87,"y":340.05},"width":14.619995,"height":10.018499,"page":477},{"topLeft":{"x":418.51,"y":340.05},"width":14.619995,"height":10.018499,"page":477},{"topLeft":{"x":455.02,"y":340.05},"width":19.044983,"height":10.018499,"page":477}],"sectionNumber":5064,"textBefore":null,"textAfter":null,"comments":null,"startOffset":47,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618668Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787174Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6ef601476dd8f0e8663eb9b5efe4c022","type":"PII","value":"100 500 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-25: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":177.5,"y":340.05},"width":14.619995,"height":10.018499,"page":477},{"topLeft":{"x":215.21,"y":340.05},"width":14.619995,"height":10.018499,"page":477},{"topLeft":{"x":251.69,"y":340.05},"width":19.044983,"height":10.018499,"page":477}],"sectionNumber":5064,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618669Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787174Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"513b6e0ec58c19070983cee7d149b6a4","type":"PII","value":"14-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":298.97,"y":427.31},"width":22.059998,"height":10.0905,"page":478}],"sectionNumber":5069,"textBefore":null,"textAfter":" 2-3 19-33","comments":null,"startOffset":199,"endOffset":204,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618669Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787175Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de04905eb529fb3c65a3dfddbf3e0f95","type":"PII","value":"56-169","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":296.69,"y":362.37},"width":26.490997,"height":10.0905,"page":478}],"sectionNumber":5069,"textBefore":"14-20 2-3 19-33 ","textAfter":" 1.08-2.41 4.6-7.3","comments":null,"startOffset":215,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618669Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787175Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"73218086049c2ff55a1b4b862e4da4b1","type":"PII","value":"21-35","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":496.3,"y":387.45},"width":22.059998,"height":10.0905,"page":478}],"sectionNumber":5069,"textBefore":"12-19 2.4-3.8 ","textAfter":" 55-165 0.87-2.55","comments":null,"startOffset":352,"endOffset":357,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618669Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787175Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c901858db9e2efdf9f3e655a1d637c35","type":"PII","value":"12-19","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":496.3,"y":427.31},"width":22.059998,"height":10.0905,"page":478}],"sectionNumber":5069,"textBefore":null,"textAfter":" 2.4-3.8 21-35","comments":null,"startOffset":338,"endOffset":343,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618669Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787175Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e131a2f77b5393fb23f92f7e271f06c7","type":"PII","value":"100 500 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":183.74,"y":453.47},"width":14.619995,"height":10.018499,"page":478},{"topLeft":{"x":220.25,"y":453.47},"width":14.619995,"height":10.018499,"page":478},{"topLeft":{"x":256.37,"y":453.47},"width":19.044983,"height":10.018499,"page":478}],"sectionNumber":5068,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787176Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d1ff062e90a8d9698e409a3c937f316a","type":"PII","value":"19-33","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":298.97,"y":387.45},"width":22.059998,"height":10.0905,"page":478}],"sectionNumber":5069,"textBefore":"14-20 2-3 ","textAfter":" 56-169 1.08-2.41","comments":null,"startOffset":209,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787176Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"349bde702fcaed443564d65a0b1566ee","type":"PII","value":"100 500 4000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":385.03,"y":453.47},"width":14.619995,"height":10.018499,"page":478},{"topLeft":{"x":423.31,"y":453.47},"width":14.619995,"height":10.018499,"page":478},{"topLeft":{"x":456.58,"y":453.47},"width":19.044983,"height":10.018499,"page":478}],"sectionNumber":5068,"textBefore":null,"textAfter":null,"comments":null,"startOffset":47,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787176Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7e1c626a798ecb3ed653700c069b8925","type":"PII","value":"2010-2012","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":285.324,"y":307.05},"width":40.250977,"height":10.0905,"page":478}],"sectionNumber":5075,"textBefore":"all parameters between ","textAfter":" * Statistically","comments":null,"startOffset":7984,"endOffset":7993,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787176Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5bb3b562e1b398a1cb1d6acf5a49eb62","type":"PII","value":"55-165","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-26: Intergroup comparison of selected clinical chemistry parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":494.02,"y":362.37},"width":26.490997,"height":10.0905,"page":478}],"sectionNumber":5069,"textBefore":"12-19 2.4-3.8 21-35 ","textAfter":" 0.87-2.55 4.5-7.","comments":null,"startOffset":358,"endOffset":364,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787176Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"79fef23a0ec0003236aad2ac6f55d9b2","type":"PII","value":"100 500 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-27: Intergroup comparison of selected urinalysis parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":177.5,"y":685.46},"width":14.619995,"height":10.018499,"page":479},{"topLeft":{"x":214.97,"y":685.46},"width":14.619995,"height":10.018499,"page":479},{"topLeft":{"x":251.69,"y":685.46},"width":19.044983,"height":10.018499,"page":479}],"sectionNumber":5072,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787177Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6813a3fa5cd1507cbb999952bae77136","type":"PII","value":"100 500 4000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-27: Intergroup comparison of selected urinalysis parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":382.39,"y":685.46},"width":14.619995,"height":10.018499,"page":479},{"topLeft":{"x":421.15,"y":685.46},"width":14.619995,"height":10.018499,"page":479},{"topLeft":{"x":455.74,"y":685.46},"width":19.044983,"height":10.018499,"page":479}],"sectionNumber":5072,"textBefore":null,"textAfter":null,"comments":null,"startOffset":47,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618671Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787177Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5d5b55a151188deb2a9d2ab7747d931e","type":"PII","value":"2010-2012","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":285.324,"y":631.34},"width":40.250977,"height":10.0905,"page":479}],"sectionNumber":5075,"textBefore":"all parameters between ","textAfter":" * Statistically","comments":null,"startOffset":9584,"endOffset":9593,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618671Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787177Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3c4c7423bb07c6bd8e1f20c889a5ff74","type":"CBI_author","value":"Dymarkowska K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":425.45944,"y":590.42},"width":75.652466,"height":11.017679,"page":480}],"sectionNumber":5076,"textBefore":"in females. (","textAfter":", 2015)","comments":null,"startOffset":4633,"endOffset":4646,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618671Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de8f9e2a5679fff39637e910f1336447","type":"CBI_author","value":"Class","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" SYN545547 (CSCD550897):","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":464.33084,"y":306.81},"width":24.846405,"height":11.017679,"page":480}],"sectionNumber":5079,"textBefore":"non-genotoxic compounds (‘Cramer ","textAfter":" III’) are","comments":null,"startOffset":497,"endOffset":502,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618671Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dc46b0faab394a504793aa0e561f8340","type":"CBI_author","value":"Cramer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" SYN545547 (CSCD550897):","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":425.47,"y":306.81},"width":33.932343,"height":11.017679,"page":480}],"sectionNumber":5079,"textBefore":"non-genotoxic compounds (‘","textAfter":" Class III’)","comments":null,"startOffset":490,"endOffset":496,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618672Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"efa4e63cb13ee13093526f409213abf6","type":"CBI_address","value":"Syngenta Ltd.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  SYN545547 (CSCD550897):","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":197.7955,"y":242.34003},"width":57.69232,"height":10.526819,"page":480}],"sectionNumber":5077,"textBefore":"Report: K-CA 5.8.1/67 ","textAfter":" (2016). SYN545547:","comments":null,"startOffset":22,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618672Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53ffef765a1c555dab9f481a564db760","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  SYN545547 (CSCD550897):","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":189.80515,"y":207.77997},"width":38.16078,"height":10.526819,"page":480}],"sectionNumber":5077,"textBefore":"January 2016. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":265,"endOffset":273,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618672Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ff506865231b367b43eeb1e0e9c5b1ad","type":"CBI_address","value":"Syngenta Ltd. Jealott’s Hill International Research, Bracknell, Berks RG42 6EY","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  SYN545547 (CSCD550897):","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":295.4111,"y":230.82},"width":227.60019,"height":10.526819,"page":480},{"topLeft":{"x":133.82,"y":219.29999},"width":131.40475,"height":10.526819,"page":480}],"sectionNumber":5077,"textBefore":"SYN545974 and SYN545547. ","textAfter":". Laboratory Report","comments":null,"startOffset":122,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618672Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2cc9cf2104487016196d0fcd9e17d581","type":"hint_only","value":"study director","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Sacrifice and pathology:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":80.53152,"y":652.94},"width":61.863518,"height":11.017679,"page":480}],"sectionNumber":5076,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4311,"endOffset":4325,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618672Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"23ab5a722d89740c93f0583969832d9e","type":"CBI_address","value":"Syngenta Ltd.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":438.77945,"y":453.83},"width":62.7688,"height":11.017679,"page":481}],"sectionNumber":5080,"textBefore":"be non-genotoxic. (","textAfter":", 2016) ","comments":null,"startOffset":1923,"endOffset":1936,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618672Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c3e52f09385628a2a955c4b881d2b885","type":"CBI_author","value":"Cramer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":295.05493,"y":240.53998},"width":33.82196,"height":11.017679,"page":481}],"sectionNumber":5080,"textBefore":"non-genotoxic compounds (‘","textAfter":" Class III’)","comments":null,"startOffset":2501,"endOffset":2507,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618673Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8788089fb0c96a85fbf339c5afc92d61","type":"CBI_author","value":"Class","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":334.15866,"y":240.53998},"width":24.956787,"height":11.017679,"page":481}],"sectionNumber":5080,"textBefore":"non-genotoxic compounds (‘Cramer ","textAfter":" III’) are","comments":null,"startOffset":2508,"endOffset":2513,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618673Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7669d4b8f3b709342ec365e18c1ed257","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":131.62799,"y":67.23999},"width":41.88115,"height":11.017679,"page":481}],"sectionNumber":5160,"textBefore":"2,4,6- TCP by ","textAfter":". However, in","comments":null,"startOffset":150,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618673Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d57efc1bb480fc2b885ba26e139502b","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":753.5},"width":26.62384,"height":11.017679,"page":481}],"sectionNumber":5080,"textBefore":"DNA alerts for ","textAfter":", MN and","comments":null,"startOffset":401,"endOffset":405,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618673Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f39fdf367e20658fba9c09796437e907","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":67.0,"y":104.0},"width":74.0,"height":85.0,"page":481}],"sectionNumber":5080,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618673Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9f305dd964f02bad1d54ac06548ad492","type":"CBI_author","value":"MacDonald","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.39926,"y":388.05},"width":52.93213,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"(see K-CA 5.1.1/05 ","textAfter":" and Yewkes,","comments":null,"startOffset":2866,"endOffset":2875,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618673Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"48677c12538caf49410bdec838ba17ab","type":"CBI_author","value":"Yewkes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.185,"y":564.47},"width":36.639404,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"plasma (Macdonald and ","textAfter":", 2015 and","comments":null,"startOffset":1540,"endOffset":1546,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9c6160551574f6abdf86d0aadcb5ea9b","type":"CBI_author","value":"Yewkes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":493.55603,"y":388.05},"width":36.350098,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"5.1.1/05 MacDonald and ","textAfter":", 2015). Male","comments":null,"startOffset":2880,"endOffset":2886,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"748b336fe2df6c9cc33279fbcd1a7b5e","type":"CBI_author","value":"Macdonald","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.1049,"y":564.47},"width":50.547485,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"in plasma (","textAfter":" and Yewkes,","comments":null,"startOffset":1526,"endOffset":1535,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4cabb491a85cf5329b6aeaba34de5908","type":"CBI_author","value":"Bercz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":437.99},"width":26.756325,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"80 mg/kg/day (","textAfter":" et al.,","comments":null,"startOffset":2493,"endOffset":2498,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7b7a54961274f0cf2abef53226eb815","type":"CBI_author","value":"Tomlinson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":472.57523,"y":564.47},"width":48.714874,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"Yewkes, 2015 and ","textAfter":" et al.,","comments":null,"startOffset":1557,"endOffset":1566,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dc1d3d8329732d792db94c885fc28113","type":"CBI_author","value":"Pekari","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":153.38449,"y":475.91},"width":29.030563,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"et al., 1981; ","textAfter":" et al.,","comments":null,"startOffset":2205,"endOffset":2211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d3ce99f6638624d9f69da77b2a7a7d37","type":"CBI_author","value":"Bahig","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":475.91},"width":27.38559,"height":11.017679,"page":482}],"sectionNumber":5160,"textBefore":"not accumulate (","textAfter":" et al.,","comments":null,"startOffset":2185,"endOffset":2190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618674Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eba1ab513211a1f4b286e7c2dadc6ad7","type":"PII","value":"2009) 13","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":242.43309,"y":614.54},"width":26.756332,"height":11.017679,"page":482},{"topLeft":{"x":268.25,"y":619.58},"width":8.619995,"height":9.43602,"page":482}],"sectionNumber":5160,"textBefore":"risk assessment (OECD, ","textAfter":" . 2,4,6-TCP","comments":null,"startOffset":1266,"endOffset":1274,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618675Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787179Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed2984a90c81a936a2349b29a6f79978","type":"CBI_author","value":"Tomlinson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":239.72815,"y":488.39},"width":48.736908,"height":11.017679,"page":483}],"sectionNumber":5160,"textBefore":"(see K-CA 5.1.1/08 ","textAfter":" et al.,","comments":null,"startOffset":4759,"endOffset":4768,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618675Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bdb8a295d9050e3091577f9a7940d523","type":"PII","value":"085) 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-30: Maximum total mg/kg TCP related material in mice exposed to over a 7 day period\nfollowing a single oral dose of SYN545974.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":413.413,"y":215.70001},"width":17.541992,"height":10.0905,"page":483},{"topLeft":{"x":466.66,"y":215.70001},"width":10.053986,"height":10.0905,"page":483}],"sectionNumber":5104,"textBefore":null,"textAfter":null,"comments":null,"startOffset":37,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618675Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787179Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"40d8fd6f9a9af0669876b1fd65cc4944","type":"PII","value":"(41) 140","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-29: Mean plasma circulating levels of TCP related material over 96 hour period,\nfollowing single oral dose SYN545974 to rats.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":267.731,"y":555.83},"width":15.984985,"height":10.0905,"page":483},{"topLeft":{"x":322.63,"y":555.83},"width":14.607971,"height":10.0905,"page":483}],"sectionNumber":5095,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618675Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787179Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dca439b82a55483653f85f11ac9d13b4","type":"PII","value":"(41) 36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-29: Mean plasma circulating levels of TCP related material over 96 hour period,\nfollowing single oral dose SYN545974 to rats.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.791,"y":555.83},"width":15.984985,"height":10.0905,"page":483},{"topLeft":{"x":474.7,"y":555.83},"width":10.053986,"height":10.0905,"page":483}],"sectionNumber":5095,"textBefore":null,"textAfter":null,"comments":null,"startOffset":43,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618675Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78718Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fee021ab4894e539fdf9610cd95ae021","type":"PII","value":"21 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.32397,"y":92.46399},"width":32.18802,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"000, 14 700, ","textAfter":", 31 500","comments":null,"startOffset":8934,"endOffset":8940,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618676Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78718Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b5dac203b18ed0c792d67885c3be3b69","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":114.252,"y":92.46399},"width":32.188004,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"ad libitum containing ","textAfter":", 14 700,","comments":null,"startOffset":8918,"endOffset":8924,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618676Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78718Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"13aecf289330145bccc571de3a0c141f","type":"PII","value":"46 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":274.57486,"y":92.46399},"width":32.187958,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"31 500 or ","textAfter":" ppm 2,4,6-TCP","comments":null,"startOffset":8952,"endOffset":8958,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618676Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78718Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8a1e0076e792620f82c95a3f609d7c25","type":"PII","value":"31 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.98141,"y":92.46399},"width":32.06656,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"700, 21 500, ","textAfter":" or 46","comments":null,"startOffset":8942,"endOffset":8948,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618676Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78718Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b7ad219cbfbf5a509425e07a5a5da9e8","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":115.68285,"y":205.62},"width":37.089775,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"male and female ","textAfter":"-Dawley rats (Bercz","comments":null,"startOffset":8116,"endOffset":8123,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618676Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a664ebc304de030cb5d04ae390d45c53","type":"PII","value":"14 700","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":151.90942,"y":92.46399},"width":32.06656,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"containing 10 000, ","textAfter":", 21 500,","comments":null,"startOffset":8926,"endOffset":8932,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618676Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787181Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5c294e6774efad5354fff76d2d0b90d8","type":"CBI_author","value":"Bercz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.87186,"y":205.62},"width":26.756332,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"Sprague-Dawley rats (","textAfter":" et al.,","comments":null,"startOffset":8137,"endOffset":8142,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6057f53e5f16bbd4849fc280503e79c5","type":"CBI_author","value":"Bahig","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":261.85248,"y":615.62},"width":27.38559,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"extent isomerized (","textAfter":", 1981). In","comments":null,"startOffset":7215,"endOffset":7220,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04b11684923c16041a1f6fd50f47dada","type":"CBI_author","value":"Pekari","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":390.98743,"y":615.62},"width":29.251404,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"a study by ","textAfter":" et al.,","comments":null,"startOffset":7243,"endOffset":7249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9cc67da70dfd10150fa565d39f41c5a3","type":"CBI_author","value":"Balikova","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":304.0143,"y":577.67},"width":40.677765,"height":11.017679,"page":484}],"sectionNumber":5160,"textBefore":"Additional data by ","textAfter":" et al.,","comments":null,"startOffset":7537,"endOffset":7545,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a3eb36c8a7f2b30c6af9257f948fb40","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":64.0,"y":242.0},"width":443.0,"height":248.0,"page":484}],"sectionNumber":5160,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2453919689542548ff9e34b6240939ea","type":"PII","value":"21 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":131.71294,"y":627.62},"width":31.713303,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"and females at ","textAfter":" ppm. Treatment","comments":null,"startOffset":10091,"endOffset":10097,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787181Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f627b3c9fd26fe8d4b9f01dbf508fc26","type":"PII","value":"31 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":168.01328,"y":615.02},"width":31.238571,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"effects observed at ","textAfter":" ppm are","comments":null,"startOffset":10202,"endOffset":10208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787181Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"13829d319a7fc68a4907e8ae9b5dc76a","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.63983,"y":388.53},"width":32.430893,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 000 and ","textAfter":" ppm respectively","comments":null,"startOffset":11792,"endOffset":11798,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618677Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787181Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4f0612ac598086576904ed471a5d692a","type":"CBI_author","value":"Stoner","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":413.79788,"y":489.11},"width":29.759186,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"for 2,4,6-TCP (","textAfter":", 1986)) .","comments":null,"startOffset":11144,"endOffset":11150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618678Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f49697dc05c65662df2d372a2b82c6a5","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":128.8755,"y":287.37},"width":32.066574,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 000 and ","textAfter":" ppm respectively.","comments":null,"startOffset":12579,"endOffset":12585,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618678Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787182Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"058f8aa847ac5a84d75e2bdb6b313e3b","type":"PII","value":"21 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.37807,"y":665.66},"width":32.430893,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"000, 14 700, ","textAfter":" or 31","comments":null,"startOffset":9818,"endOffset":9824,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618678Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787182Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a9682bd7260cb7bad6168f18dbfad06f","type":"PII","value":"10 428","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":377.1874,"y":73.0},"width":31.359955,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 214 and ","textAfter":" ppm respectively..","comments":null,"startOffset":14194,"endOffset":14200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618678Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787182Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9c189d64533a6ee77d44331f414fee1c","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":147.2131,"y":665.66},"width":32.430893,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"containing 6 800, ","textAfter":", 14 700,","comments":null,"startOffset":9802,"endOffset":9808,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618678Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787182Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7093a0254696b6f7db52182695fe0a48","type":"PII","value":"31 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":459.89655,"y":652.94},"width":33.148438,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"and females at ","textAfter":" ppm. A","comments":null,"startOffset":9964,"endOffset":9970,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618679Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787182Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"04d515d3c0e28758e646ea2ef3da95a5","type":"PII","value":"10 428","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.63983,"y":161.58002},"width":32.430893,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 214 and ","textAfter":" ppm respectively","comments":null,"startOffset":13432,"endOffset":13438,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618679Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787183Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0092f8ef2f726f86aa2a8ee2bf60430a","type":"PII","value":"20 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.23795,"y":237.41998},"width":32.552307,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"10 000 or ","textAfter":" ppm (females),","comments":null,"startOffset":12835,"endOffset":12841,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618679Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787183Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"153f32388ec7d656e2807e1c5d3cc52f","type":"CBI_author","value":"Bercz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":151.08815,"y":274.76996},"width":26.756332,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"rat study by ","textAfter":" (1990). In","comments":null,"startOffset":12682,"endOffset":12687,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618679Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f549d00bfa9ea36a633cb3a217076d7","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":224.41586,"y":401.25},"width":32.06656,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"at 5000 and ","textAfter":" ppm respectively","comments":null,"startOffset":11701,"endOffset":11707,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618679Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787183Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7ab7d64d85c2cb598b07a0111bfb6aca","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":228.90416,"y":439.19},"width":32.905594,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 000 and ","textAfter":" ppm for","comments":null,"startOffset":11398,"endOffset":11404,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618679Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787183Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12eeab8cda6486ef9c6ab760504aa285","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":475.37708,"y":85.62402},"width":33.027008,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 000 and ","textAfter":" ppm respectively","comments":null,"startOffset":14115,"endOffset":14121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61868Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787184Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"931a5f42bae62afb734c8c724612c0f7","type":"PII","value":"14 700","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":476.40393,"y":640.34},"width":32.430847,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"in males at ","textAfter":" ppm and","comments":null,"startOffset":10065,"endOffset":10071,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61868Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787184Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"70411e2207d636e0f4f664c12690312e","type":"PII","value":"21 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":475.96222,"y":627.62},"width":31.656311,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"not observed at ","textAfter":" ppm, any","comments":null,"startOffset":10166,"endOffset":10172,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61868Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787184Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"41e4de06f876781cf1e813d21faffd67","type":"CBI_author","value":"Bercz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.1859,"y":702.86},"width":26.756348,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"day study by ","textAfter":", 1990). In","comments":null,"startOffset":9671,"endOffset":9676,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61868Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43f7e63f03eb0077b32ee9e992eda02b","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.44717,"y":174.18},"width":31.94513,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 000 and ","textAfter":" ppm respectively","comments":null,"startOffset":13341,"endOffset":13347,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61868Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787185Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6316b9923f16e66cdf7ad7a563cfdc3d","type":"PII","value":"10 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.43008,"y":237.41998},"width":32.673782,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"000ppm (males) and ","textAfter":" or 20","comments":null,"startOffset":12825,"endOffset":12831,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618681Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787185Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"354b45a0fa3350d16d131e7eb4fcc58d","type":"PII","value":"14 700","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":185.11342,"y":665.66},"width":32.552338,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"800, 10 000, ","textAfter":", 21 500","comments":null,"startOffset":9810,"endOffset":9816,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618681Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787185Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f07ab4d54d817fd0285cad257a48ff99","type":"PII","value":"46 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":728.18},"width":31.359993,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"observed only at ","textAfter":" ppm (~2","comments":null,"startOffset":9405,"endOffset":9411,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618681Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787185Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c58b571f4eeef1b2b46d92e8647164e3","type":"CBI_author","value":"Long","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":464.51},"width":25.49775,"height":10.929359,"page":485}],"sectionNumber":5160,"textBefore":"(Stoner, 1986)) . ","textAfter":" term toxicity","comments":null,"startOffset":11161,"endOffset":11165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618681Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1cd3f95abf8a92675e0441c6bb9b9ecb","type":"PII","value":"10 428","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.35454,"y":212.10004},"width":32.430893,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"5 214 and ","textAfter":" ppm. In","comments":null,"startOffset":13026,"endOffset":13032,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618681Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787185Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f2b807cca48b2190b1d145f0ba30ba4f","type":"PII","value":"31 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":271.82162,"y":665.66},"width":32.430847,"height":11.017679,"page":485}],"sectionNumber":5160,"textBefore":"21 500 or ","textAfter":" ppm 2,4,6-TCP","comments":null,"startOffset":9828,"endOffset":9834,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618681Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787186Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"875ce448ee2a4738cf6df7c79a15a0dd","type":"CBI_author","value":"Long","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.151344,"y":425.87},"width":24.305428,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"of 40 female ","textAfter":"-Evans hooded rats","comments":null,"startOffset":16603,"endOffset":16607,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618682Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d1be89df4841a24d5d00f301441d8f9","type":"CBI_author","value":"Long","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":309.93173,"y":615.02},"width":24.30542,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"15 adult male ","textAfter":"-Evans hooded (LEH)","comments":null,"startOffset":15260,"endOffset":15264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618682Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db4026c58759bfbab99299f31bdeae92","type":"CBI_author","value":"Exon","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":130.52061,"y":262.05},"width":24.30545,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"a study by ","textAfter":" and Koller","comments":null,"startOffset":17757,"endOffset":17761,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618682Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e09d33f9f57328ea0a6050f9cc53be85","type":"CBI_author","value":"Blackburn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":221.32466,"y":400.53},"width":46.694565,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"during gestation (","textAfter":", 1986). Dams","comments":null,"startOffset":16827,"endOffset":16836,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618682Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e58e6bfb442d689429b396adda0b2b41","type":"PII","value":"12-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":381.80203,"y":211.5},"width":26.787933,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"on treatment for ","textAfter":" weeks. The","comments":null,"startOffset":18211,"endOffset":18216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618682Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787186Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f4f174ad31604dda1ad08e9080592007","type":"CBI_author","value":"Evans","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":336.91,"y":615.02},"width":27.948639,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"adult male Long-","textAfter":" hooded (LEH)","comments":null,"startOffset":15265,"endOffset":15270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3ed2519a12b221ed3ef3ac576ec43a50","type":"CBI_author","value":"Stoner","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":172.21875,"y":728.18},"width":29.604645,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"was investigated (","textAfter":", 1986). Lungs","comments":null,"startOffset":14448,"endOffset":14454,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c364278ca4e78217c9d7ad4fb1032f5e","type":"CBI_author","value":"Koller","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.50046,"y":262.05},"width":29.129929,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"by Exon and ","textAfter":" (1985) weanling","comments":null,"startOffset":17766,"endOffset":17772,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1bf1c8d9eba273c8861e7b34c55061a8","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":323.82,"y":262.05},"width":36.968292,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"(1985) weanling female ","textAfter":" Dawley (SD)","comments":null,"startOffset":17796,"endOffset":17803,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9ab8f7207f84882acd873bc38afc8b5","type":"CBI_author","value":"Blackburn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":116.03615,"y":615.02},"width":46.827057,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"been conducted (","textAfter":", 1986). Groups","comments":null,"startOffset":15218,"endOffset":15227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6e596183be35b9a7a9b6805a50fc07d","type":"CBI_author","value":"Evans","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":124.82,"y":425.87},"width":27.948647,"height":11.017679,"page":486}],"sectionNumber":5160,"textBefore":"40 female Long-","textAfter":" hooded rats","comments":null,"startOffset":16608,"endOffset":16613,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28fada601dc250eaa4277d00dcd47645","type":"PII","value":"323-327","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.57,"y":681.5},"width":31.020996,"height":10.0905,"page":487}],"sectionNumber":5107,"textBefore":"CHEMOSPHERE, (1981), 10: ","textAfter":".","comments":null,"startOffset":263,"endOffset":270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618683Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787187Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5020ea410674af38044f80c76e2eb028","type":"CBI_author","value":"Ward","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.7431,"y":84.54401},"width":23.240723,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"J.K; Goodman J.I; ","textAfter":" J.M; Loughran","comments":null,"startOffset":19227,"endOffset":19231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28de600ba6186816666d2f788133adcb","type":"CBI_author","value":"Balikova M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.31,"y":593.18},"width":43.65103,"height":10.0905,"page":487}],"sectionNumber":5109,"textBefore":null,"textAfter":"; Stipek S;","comments":null,"startOffset":332,"endOffset":342,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e34098840ff926e48c1f20a31cb301c0","type":"PII","value":"41-44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.13,"y":624.98},"width":22.027008,"height":10.0905,"page":487}],"sectionNumber":5108,"textBefore":"TOXICOLOGY, (1986), 59: ","textAfter":".","comments":null,"startOffset":376,"endOffset":381,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787187Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"98cbbc66f98da30f82676cb75cbdf85c","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":737.78},"width":35.4971,"height":10.018499,"page":487}],"sectionNumber":5106,"textBefore":null,"textAfter":" Scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5f412903b503ab3f2d378af9fe21f04e","type":"CBI_author","value":"Haseman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":310.24088,"y":84.54401},"width":38.110962,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"in Thomas J; ","textAfter":" J.K; Goodman","comments":null,"startOffset":19201,"endOffset":19208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ef5d3038cd97af01892434b9a93ad38","type":"CBI_author","value":"Large","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":76.344,"y":107.58002},"width":24.127129,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"of 2,4,6-TCP 15 ","textAfter":" granular lymphocyte","comments":null,"startOffset":18928,"endOffset":18933,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d9b9e29772877f338e238bfd5163838d","type":"CBI_author","value":"Parnell","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":424.738,"y":478.55},"width":26.623016,"height":10.0905,"page":487}],"sectionNumber":5110,"textBefore":"L; Page N.P; ","textAfter":" M.J; Wolfe","comments":null,"startOffset":285,"endOffset":292,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8d67f9bbb60dbcec16f0b2edd5306555","type":"CBI_author","value":"Boudène C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":439.83704,"y":666.38},"width":32.94095,"height":10.0905,"page":487},{"topLeft":{"x":417.43,"y":655.94},"width":7.0029907,"height":10.0905,"page":487}],"sectionNumber":5108,"textBefore":"Pekari K; ","textAfter":"; Aitio A.","comments":null,"startOffset":320,"endOffset":329,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6945041522b8081d5aa3c39ac760dffe","type":"CBI_author","value":"Bercz J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.87,"y":499.31},"width":27.648987,"height":10.0905,"page":487}],"sectionNumber":5110,"textBefore":null,"textAfter":".P; Robinson M;","comments":null,"startOffset":243,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8519766aaea5c21bfaedc986533e596a","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":365.3752,"y":73.119995},"width":30.332245,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"lymphocytic leukemia in ","textAfter":" 344 rats","comments":null,"startOffset":19323,"endOffset":19330,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618684Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6cf496f8a5654f616b8976ddce255c4","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":50.080017},"width":38.05121,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"Science. 99(1): 3-19. ","textAfter":" File No.","comments":null,"startOffset":19478,"endOffset":19486,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b5628c2b1dceb7ee163b3dc7f700627","type":"CBI_author","value":"Jones","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.96603,"y":488.87},"width":20.934998,"height":10.0905,"page":487}],"sectionNumber":5110,"textBefore":"J.P; Robinson M; ","textAfter":" L; Page","comments":null,"startOffset":266,"endOffset":271,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"448662ac02bb92959e89c51d40f04a32","type":"CBI_author","value":"Crkovska J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":421.24902,"y":582.71},"width":41.077026,"height":10.0905,"page":487}],"sectionNumber":5109,"textBefore":"M; Stipek S; ","textAfter":". BIOCHEMIA CLINICA","comments":null,"startOffset":354,"endOffset":364,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7363fc22f7539f38dfe0686860f7e7e8","type":"CBI_author","value":"BOHEMOSLOVAC A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.03,"y":551.75},"width":75.87085,"height":10.0905,"page":487},{"topLeft":{"x":402.67,"y":541.31},"width":7.497986,"height":10.0905,"page":487}],"sectionNumber":5109,"textBefore":null,"textAfter":null,"comments":null,"startOffset":384,"endOffset":398,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d316f419ebdfd4a5e6ac673529c63216","type":"CBI_author","value":"Aitio A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.221,"y":655.94},"width":28.234009,"height":10.0905,"page":487}],"sectionNumber":5108,"textBefore":"K; Boudène C; ","textAfter":". ARCHIVES OF","comments":null,"startOffset":331,"endOffset":338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"55df3c0f71fe9478690c742f274b52cb","type":"CBI_author","value":"Page N.P","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.34805,"y":488.87},"width":18.541016,"height":10.0905,"page":487},{"topLeft":{"x":406.27,"y":478.55},"width":14.751984,"height":10.0905,"page":487}],"sectionNumber":5110,"textBefore":null,"textAfter":null,"comments":null,"startOffset":275,"endOffset":283,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"50fe4ec4c7a07274b3bef0c58d694b7f","type":"CBI_author","value":"Kraus A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.11203,"y":712.58},"width":22.375,"height":10.0905,"page":487},{"topLeft":{"x":415.51,"y":702.14},"width":7.497986,"height":10.0905,"page":487}],"sectionNumber":5107,"textBefore":"Bahig M. E; ","textAfter":"; Klein W.","comments":null,"startOffset":220,"endOffset":227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1cab476268d5316c826ec97b0085d209"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1a66a2664a7e4a60082ce356255ec61d","type":"CBI_author","value":"Thomas J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":108.66503,"y":84.54401},"width":42.334023,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"of evidence approach. ","textAfter":" et al.,","comments":null,"startOffset":19152,"endOffset":19161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9dfb1d416c35184aeefdbb00f63acb9b","type":"CBI_author","value":"Pekari K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.27,"y":666.38},"width":32.797028,"height":10.0905,"page":487}],"sectionNumber":5108,"textBefore":null,"textAfter":"; Boudène C;","comments":null,"startOffset":310,"endOffset":318,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618685Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"752d37a9770c6c38f951ceae22c501d3","type":"CBI_author","value":"Robinson M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":439.71402,"y":499.31},"width":35.36197,"height":10.0905,"page":487},{"topLeft":{"x":406.15,"y":488.87},"width":9.001007,"height":10.0905,"page":487}],"sectionNumber":5110,"textBefore":"Bercz J.P; ","textAfter":"; Jones L;","comments":null,"startOffset":254,"endOffset":264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"445e9ed1632733ae9cfbf24d2c69d2e0","type":"CBI_author","value":"Wolfe G.W.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":415.51,"y":468.11},"width":45.10901,"height":10.0905,"page":487}],"sectionNumber":5110,"textBefore":"N.P; Parnell M.J; ","textAfter":" JOURNAL OF","comments":null,"startOffset":298,"endOffset":308,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a4cda711264ba73b51317e28714b7ac","type":"CBI_author","value":"Klein W.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":426.661,"y":702.14},"width":33.949005,"height":10.0905,"page":487}],"sectionNumber":5107,"textBefore":"E; Kraus A; ","textAfter":" CHEMOSPHERE, (1981),","comments":null,"startOffset":229,"endOffset":237,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1cab476268d5316c826ec97b0085d209"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1882d2b10ba9604edb09e8ed5d8add97","type":"CBI_author","value":"Bahig M. E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":403.51,"y":712.58},"width":42.804993,"height":10.0905,"page":487}],"sectionNumber":5107,"textBefore":null,"textAfter":"; Kraus A;","comments":null,"startOffset":208,"endOffset":218,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["1cab476268d5316c826ec97b0085d209"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1cab476268d5316c826ec97b0085d209","type":"published_information","value":"CHEMOSPHERE","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":403.39,"y":691.82},"width":67.07794,"height":10.0905,"page":487}],"sectionNumber":5107,"textBefore":null,"textAfter":null,"comments":null,"startOffset":238,"endOffset":249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1af91ede5d149b0a42e65b65c266298a","type":"CBI_author","value":"Thomas","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.77936,"y":84.54401},"width":33.16089,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"(2007). Published in ","textAfter":" J; Haseman","comments":null,"startOffset":19191,"endOffset":19197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"720ab83e6d938359c8a8df4bd2f36f58","type":"CBI_author","value":"Spencer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":73.119995},"width":33.10108,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"J.M; Loughran T.P; ","textAfter":" P.J. (2007).","comments":null,"startOffset":19251,"endOffset":19258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3665f6b30644176dcbd50cd76a71f5bf","type":"CBI_author","value":"Stipek S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-31: Summary of publications assessing the toxicity of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":449.77606,"y":593.18},"width":24.07602,"height":10.0905,"page":487},{"topLeft":{"x":411.43,"y":582.71},"width":6.003998,"height":10.0905,"page":487}],"sectionNumber":5109,"textBefore":"Balikova M; ","textAfter":"; Crkovska J.","comments":null,"startOffset":344,"endOffset":352,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3a41a0308433f19458a7e1ab546a711","type":"CBI_author","value":"Loughran T.P","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":472.52927,"y":84.54401},"width":56.746246,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19237,"endOffset":19249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618686Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c3ff430fc091960de6f70b93bcc9a9f6","type":"CBI_author","value":"Goodman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":" 2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":369.234,"y":84.54401},"width":40.501404,"height":10.526819,"page":487}],"sectionNumber":5160,"textBefore":"J; Haseman J.K; ","textAfter":" J.I; Ward","comments":null,"startOffset":19214,"endOffset":19221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb086a18241e61663bff15267300c763","type":"CBI_author","value":"Exon","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.87,"y":466.91},"width":20.016968,"height":10.0905,"page":488}],"sectionNumber":5117,"textBefore":null,"textAfter":" J.H; Koller","comments":null,"startOffset":467,"endOffset":471,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"23fd95adcc619b987e2c9380d5e98e7a","type":"published_information","value":"FUNDAMENTAL AND APPLIED TOXICOLOGY","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":403.39,"y":571.07},"width":69.47189,"height":10.0905,"page":488},{"topLeft":{"x":408.19,"y":560.75},"width":59.760925,"height":10.0905,"page":488},{"topLeft":{"x":406.99,"y":550.43},"width":59.931885,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":null,"textAfter":null,"comments":null,"startOffset":513,"endOffset":547,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75945b33d5f935376bb278e65f8b743a","type":"CBI_author","value":"Zenick H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.625,"y":612.62},"width":25.92102,"height":10.0905,"page":488},{"topLeft":{"x":401.35,"y":602.18},"width":7.497986,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":null,"textAfter":null,"comments":null,"startOffset":460,"endOffset":468,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["NER"],"reference":["23fd95adcc619b987e2c9380d5e98e7a"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5c94b5347089ddad5f0f1c4e82af649e","type":"CBI_author","value":"George","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":424.72604,"y":591.86},"width":27.336945,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":"Manson J M; ","textAfter":" E L;","comments":null,"startOffset":490,"endOffset":496,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["23fd95adcc619b987e2c9380d5e98e7a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"609b8b9c5ccca0e43ae93debb562a1af","type":"published_information","value":"CHEMOSPHERE","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":403.39,"y":716.78},"width":67.07794,"height":10.0905,"page":488}],"sectionNumber":5115,"textBefore":null,"textAfter":null,"comments":null,"startOffset":416,"endOffset":427,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf5af3922d13a4a5e28e2eafbfabfbd1","type":"CBI_author","value":"Zetterqvist M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.67,"y":310.89},"width":50.25711,"height":10.0905,"page":488}],"sectionNumber":5118,"textBefore":null,"textAfter":null,"comments":null,"startOffset":258,"endOffset":271,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d9cc21021a2db6f71abd6ebc872df2f7","type":"CBI_author","value":"Arrhenius","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.43,"y":341.97},"width":36.99997,"height":10.0905,"page":488}],"sectionNumber":5118,"textBefore":null,"textAfter":" E; Renberg","comments":null,"startOffset":221,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"969ab93c3cc423b2aeac0ca89e1168aa","type":"CBI_author","value":"Manson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":444.622,"y":602.18},"width":29.962006,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":"H; Hope E; ","textAfter":" J M;","comments":null,"startOffset":478,"endOffset":484,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["23fd95adcc619b987e2c9380d5e98e7a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb0996039c65b8950e354b0f989faf6f","type":"PII","value":"35-46","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.13,"y":279.93},"width":22.027008,"height":10.0905,"page":488}],"sectionNumber":5118,"textBefore":"INTERACTIONS, (1977), 18: ","textAfter":".","comments":null,"startOffset":311,"endOffset":316,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618687Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787189Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4624540315665624ee0ae34eb8373cc8","type":"PII","value":"521-525","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.59705,"y":706.58},"width":30.993958,"height":10.0905,"page":488}],"sectionNumber":5115,"textBefore":"CHEMOSPHERE, (2012), 89: ","textAfter":".","comments":null,"startOffset":441,"endOffset":448,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78719Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ebf7627beda9d9d306dea4b7d76eafa5","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":752.42},"width":35.4971,"height":10.018499,"page":488}],"sectionNumber":5114,"textBefore":null,"textAfter":" Scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9c5a350af41e57fa00018ea5c200845","type":"PII","value":"307-330","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.71997,"y":394.53},"width":30.991028,"height":10.0905,"page":488}],"sectionNumber":5117,"textBefore":"(1985), chapter 25: ","textAfter":".","comments":null,"startOffset":577,"endOffset":584,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78719Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cd6f3bbb6c6fc082391dbb96aa76249a","type":"PII","value":"12-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.35399,"y":375.69},"width":22.156006,"height":10.0905,"page":488}],"sectionNumber":5117,"textBefore":"treatment for another ","textAfter":" weeks for","comments":null,"startOffset":297,"endOffset":302,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78719Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e241733eb8b769d0f8a78474b50a5947","type":"CBI_author","value":"Renberg L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.19,"y":331.53},"width":39.240967,"height":10.0905,"page":488}],"sectionNumber":5118,"textBefore":null,"textAfter":null,"comments":null,"startOffset":234,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"566792dec0a4f0e146bc80cfa25dbe61","type":"CBI_author","value":"Huff J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":424.99,"y":727.22},"width":23.680023,"height":10.0905,"page":488}],"sectionNumber":5115,"textBefore":null,"textAfter":"; CHEMOSPHERE, (2012),","comments":null,"startOffset":408,"endOffset":414,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["609b8b9c5ccca0e43ae93debb562a1af"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"90c82d4d4d4d2fc4ff097eb57769dd99","type":"CBI_author","value":"Koller","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.23697,"y":466.91},"width":23.904999,"height":10.0905,"page":488}],"sectionNumber":5117,"textBefore":"Exon J.H; ","textAfter":" L.D; WATER","comments":null,"startOffset":477,"endOffset":483,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"092b39eeed08a3a5af35d1bb69e6eea9","type":"CBI_author","value":"Blackburn K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":399.55,"y":612.62},"width":47.304993,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":null,"textAfter":"; Zenick H;","comments":null,"startOffset":447,"endOffset":458,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["23fd95adcc619b987e2c9380d5e98e7a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b757b0fe664ac406ce3fb88a2f1cada1","type":"CBI_author","value":"Hope E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":412.618,"y":602.18},"width":28.314972,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":null,"textAfter":null,"comments":null,"startOffset":470,"endOffset":476,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618688Z"}],"manualChanges":[],"engines":["NER"],"reference":["23fd95adcc619b987e2c9380d5e98e7a"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ad2c3f2eb091cc5950384a3578d6d6e5","type":"CBI_author","value":"Johansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":413.95,"y":321.21002},"width":37.98999,"height":10.0905,"page":488}],"sectionNumber":5118,"textBefore":"E; Renberg L; ","textAfter":" L; Zetterqvist","comments":null,"startOffset":245,"endOffset":254,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"251f589d1d852e8e4867400b0280d9e8","type":"PII","value":"233-239","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.305,"y":540.11},"width":31.126007,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":"TOXICOLOGY, (1986), 6: ","textAfter":".","comments":null,"startOffset":560,"endOffset":567,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78719Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5ff8dca1a4e4db31c255e2a1e44ecca8","type":"CBI_author","value":"Smith","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":415.99,"y":581.39},"width":22.40207,"height":10.0905,"page":488}],"sectionNumber":5116,"textBefore":"George E L; ","textAfter":" M K;","comments":null,"startOffset":502,"endOffset":507,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["23fd95adcc619b987e2c9380d5e98e7a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b45b1b07bf07361d2ce53f10818ea73","type":"CBI_author","value":"Greim","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.64902,"y":467.63},"width":24.067017,"height":10.0905,"page":489}],"sectionNumber":5122,"textBefore":"R; Schwarz L.R; ","textAfter":" H; ARCH.","comments":null,"startOffset":649,"endOffset":654,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5a2b65384cf6289119ec63b78d369d3f","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":752.42},"width":35.4971,"height":10.018499,"page":489}],"sectionNumber":5120,"textBefore":null,"textAfter":" Scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6a675732d6a91b299552ce571e69684e","type":"PII","value":"147-155","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.57,"y":446.99},"width":31.020996,"height":10.0905,"page":489}],"sectionNumber":5122,"textBefore":"TOXICOL., (1980), 44: ","textAfter":".","comments":null,"startOffset":686,"endOffset":693,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787191Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"812e1530e41d7a9915847790705eaedf","type":"CBI_author","value":"Kitchin K.T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.11,"y":286.16998},"width":44.623016,"height":10.0905,"page":489}],"sectionNumber":5124,"textBefore":null,"textAfter":"; Brown J.L;","comments":null,"startOffset":255,"endOffset":266,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618689Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ccbb16231bd3d53356d299996b905ed","type":"CBI_author","value":"Gotz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.87,"y":478.07},"width":18.414978,"height":10.0905,"page":489}],"sectionNumber":5122,"textBefore":null,"textAfter":" R; Schwarz","comments":null,"startOffset":628,"endOffset":632,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea56fe6270c7ea684b52640e7178246c","type":"CBI_author","value":"Conran P","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.914,"y":139.85999},"width":34.668976,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":"Stoner G; ","textAfter":"; Greisiger E;","comments":null,"startOffset":352,"endOffset":360,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6dcb9f618632ffde1c26c9369153ee76","type":"CBI_author","value":"TOXICOLOGICAL PATHOLOGY","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.87,"y":202.62},"width":74.40387,"height":10.0905,"page":489},{"topLeft":{"x":409.03,"y":192.18},"width":55.82788,"height":10.0905,"page":489}],"sectionNumber":5125,"textBefore":null,"textAfter":null,"comments":null,"startOffset":419,"endOffset":442,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0ea0f75d15bfeb3740c33fef07c7cd2b","type":"CBI_author","value":"Stober J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.62805,"y":129.41998},"width":30.394012,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":"P; Greisiger E; ","textAfter":"; Morgan M;","comments":null,"startOffset":375,"endOffset":383,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bbf616efb2ad334d2a91e10434afc2bc","type":"CBI_author","value":"Heil","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.27,"y":342.69},"width":16.44403,"height":10.0905,"page":489}],"sectionNumber":5123,"textBefore":null,"textAfter":" J; Reifferscheid","comments":null,"startOffset":153,"endOffset":157,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b733e71e249345fb92b5a753910038d","type":"PII","value":"19-31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.924,"y":77.67999},"width":22.03299,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":"PHARMACOL., (1986). 82:","textAfter":".","comments":null,"startOffset":444,"endOffset":449,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787191Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e49c236d96445095d97ab64b2dff175b","type":"CBI_author","value":"Britt A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.43,"y":212.94},"width":26.317047,"height":10.0905,"page":489}],"sectionNumber":5125,"textBefore":"M; Herren S; ","textAfter":"; Khoury M;","comments":null,"startOffset":400,"endOffset":407,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61869Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24d8e4dc3b6fd12670bc8cdd3f225610","type":"PII","value":"31-49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.13,"y":265.52997},"width":22.027008,"height":10.0905,"page":489}],"sectionNumber":5124,"textBefore":"TOXICOLOGY, (1994), 88: ","textAfter":".","comments":null,"startOffset":303,"endOffset":308,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787192Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"312ea27ee93b788f7551b21e00c2ee39","type":"CBI_author","value":"CARCINOGENESIS ,","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.83,"y":321.93},"width":78.45386,"height":10.0905,"page":489},{"topLeft":{"x":403.63,"y":311.61},"width":3.25,"height":10.0905,"page":489}],"sectionNumber":5123,"textBefore":null,"textAfter":null,"comments":null,"startOffset":178,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ff3f01efa41e9699f595b25119e60653","type":"CBI_author","value":"Stoner G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.87,"y":139.85999},"width":33.39099,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":null,"textAfter":"; Conran P;","comments":null,"startOffset":342,"endOffset":350,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"27258ebfe65f8c542625cdaa1a31ce3b","type":"PII","value":"145-151","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.57,"y":706.58},"width":31.020996,"height":10.0905,"page":489}],"sectionNumber":5121,"textBefore":"TOXICOLOGY, (1978), 11: ","textAfter":".","comments":null,"startOffset":861,"endOffset":868,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787192Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"09ada6b27981ee7a7b32be6cdcde79a2","type":"CBI_author","value":"Periera M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":446.54504,"y":118.97998},"width":26.479034,"height":10.0905,"page":489},{"topLeft":{"x":410.35,"y":108.65997},"width":9.001007,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":"J; Morgan M; ","textAfter":"; TOXICOL. APPL.","comments":null,"startOffset":395,"endOffset":404,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4704a49b2c107f1d99a1539a22282e5","type":"CBI_author","value":"Pereira M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.91,"y":223.38},"width":36.811035,"height":10.0905,"page":489}],"sectionNumber":5125,"textBefore":null,"textAfter":"; Herren S;","comments":null,"startOffset":379,"endOffset":388,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"90b16416095925c217aeabdbb81a3676","type":"CBI_author","value":"Brown J.L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":449.43103,"y":286.16998},"width":25.416962,"height":10.0905,"page":489},{"topLeft":{"x":398.95,"y":275.85004},"width":12.25,"height":10.0905,"page":489}],"sectionNumber":5124,"textBefore":"Kitchin K.T; ","textAfter":"; TOXICOLOGY, (1994),","comments":null,"startOffset":268,"endOffset":277,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fda77b502334209390a615bb21bf0ac1","type":"CBI_author","value":"Khoury M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":432.40005,"y":212.94},"width":38.727997,"height":10.0905,"page":489}],"sectionNumber":5125,"textBefore":"S; Britt A; ","textAfter":"; TOXICOLOGICAL PATHOLOGY,","comments":null,"startOffset":409,"endOffset":417,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8ae6015d96fe8d1c8d634c151f147bd0","type":"CBI_author","value":"Carlson G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.91,"y":727.22},"width":37.836975,"height":10.0905,"page":489}],"sectionNumber":5121,"textBefore":null,"textAfter":"; TOXICOLOGY, (1978),","comments":null,"startOffset":826,"endOffset":835,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618691Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8af7fade0edb080c2c7518dc04161355","type":"CBI_author","value":"Schwarz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.326,"y":478.07},"width":31.860962,"height":10.0905,"page":489}],"sectionNumber":5122,"textBefore":"Gotz R; ","textAfter":" L.R; Greim","comments":null,"startOffset":636,"endOffset":643,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d60e1b31cc3442fa4e57d01a38666f63","type":"CBI_author","value":"Herren S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.43707,"y":223.38},"width":33.229004,"height":10.0905,"page":489}],"sectionNumber":5125,"textBefore":"Pereira M; ","textAfter":"; Britt A;","comments":null,"startOffset":390,"endOffset":398,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"264673c11c5a9c7b5116eae7e2494bdc","type":"CBI_author","value":"Greisiger E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.71,"y":129.41998},"width":42.121033,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":"G; Conran P; ","textAfter":"; Stober J;","comments":null,"startOffset":362,"endOffset":373,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28e5707ce587bfdbaea439cac53a5011","type":"CBI_author","value":"TOXICOLOGY,","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.89804,"y":275.85004},"width":62.172882,"height":10.0905,"page":489}],"sectionNumber":5124,"textBefore":null,"textAfter":null,"comments":null,"startOffset":279,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4ce4fbcbd9a4447237b0d32cbf575093","type":"CBI_author","value":"Morgan M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.03,"y":118.97998},"width":39.808014,"height":10.0905,"page":489}],"sectionNumber":5126,"textBefore":"E; Stober J; ","textAfter":"; Periera M;","comments":null,"startOffset":385,"endOffset":393,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf1a39f18f6076c093b73195c10ed595","type":"CBI_author","value":"Reifferscheid G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.26205,"y":342.69},"width":49.41101,"height":10.0905,"page":489},{"topLeft":{"x":433.15,"y":332.25},"width":7.497986,"height":10.0905,"page":489}],"sectionNumber":5123,"textBefore":null,"textAfter":null,"comments":null,"startOffset":161,"endOffset":176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"08285532153a01f6330b8f852545457f","type":"CBI_author","value":"TOXICOLOGY,","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.99,"y":716.78},"width":62.145874,"height":10.0905,"page":489}],"sectionNumber":5121,"textBefore":null,"textAfter":null,"comments":null,"startOffset":837,"endOffset":848,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3dad225521ad30543c3c037fda605b28","type":"PII","value":"11-18","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":452.15802,"y":181.97998},"width":22.039001,"height":10.0905,"page":489}],"sectionNumber":5125,"textBefore":"PATHOLOGY, (1982), 10(2), ","textAfter":".","comments":null,"startOffset":459,"endOffset":464,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787194Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dedea144785f168d6ab472cf6e892214","type":"CBI_author","value":"Ahler S J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.76306,"y":618.26},"width":28.665985,"height":10.0905,"page":490},{"topLeft":{"x":402.91,"y":607.82},"width":4.501007,"height":10.0905,"page":490}],"sectionNumber":5131,"textBefore":null,"textAfter":null,"comments":null,"startOffset":268,"endOffset":277,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618692Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"82237812ddfeced15266748bcc5af29b","type":"CBI_author","value":"Butt","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.63,"y":701.78},"width":16.552032,"height":10.0905,"page":490}],"sectionNumber":5130,"textBefore":null,"textAfter":" C.M.; Wang","comments":null,"startOffset":282,"endOffset":286,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04284aed92deebb8bfcbf86bcbd6e815","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":155.18,"y":230.10004},"width":19.044998,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":null,"textAfter":" cells treated","comments":null,"startOffset":59,"endOffset":63,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1e7a460cd3ba44d9b0f41020d4e00dc9","type":"CBI_author","value":"TOXICOLOGY,","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.16302,"y":607.82},"width":62.073883,"height":10.0905,"page":490}],"sectionNumber":5131,"textBefore":null,"textAfter":null,"comments":null,"startOffset":279,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"589b2f4f4846d7cc346f695ca097bf4c","type":"CBI_author","value":"Cascorbi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":618.26},"width":33.013,"height":10.0905,"page":490}],"sectionNumber":5131,"textBefore":null,"textAfter":" I; Ahler","comments":null,"startOffset":256,"endOffset":264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b71054c0752b9d40128f7d1443c4538c","type":"CBI_author","value":"Henschler","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.83,"y":447.11},"width":37.486023,"height":10.0905,"page":490}],"sectionNumber":5133,"textBefore":null,"textAfter":" R; Appel","comments":null,"startOffset":679,"endOffset":688,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f65a9765f88da433b97debf99b1c50e1","type":"CBI_author","value":"Judis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.67,"y":144.65997},"width":19.585022,"height":10.0905,"page":490}],"sectionNumber":5136,"textBefore":null,"textAfter":" J; JOURNAL","comments":null,"startOffset":285,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95bfe62c8aa663082befe463c6c411e4","type":"PII","value":"302-305","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":421.39,"y":166.14001},"width":31.080994,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":"ENVIRON. HEALTH, 270(4): ","textAfter":".","comments":null,"startOffset":542,"endOffset":549,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787194Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"238e039c0f539aa12e5c00b3a2df2500","type":"CBI_author","value":"Wang","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.7241,"y":701.78},"width":22.41098,"height":10.0905,"page":490}],"sectionNumber":5130,"textBefore":"Butt C.M.; ","textAfter":" D; Stapleton,","comments":null,"startOffset":293,"endOffset":297,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"56211681b35a6a16d9fc4631b592eab5","type":"PII","value":"197-210","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.484,"y":597.5},"width":31.026978,"height":10.0905,"page":490}],"sectionNumber":5131,"textBefore":"TOXICOLOGY, (1989), 58:","textAfter":".","comments":null,"startOffset":302,"endOffset":309,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618693Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787195Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ce9993d92220c3eacd352e45ea3470ad","type":"CBI_author","value":"Shi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.71,"y":217.73999},"width":13.087006,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":"R-W; Liao T-T; ","textAfter":" Y-L; Wang","comments":null,"startOffset":468,"endOffset":471,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9eff4f63bb55b23bc48cc0836b09d28d","type":"CBI_author","value":"Wang L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.778,"y":217.73999},"width":30.11499,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":"T-T; Shi Y-L; ","textAfter":"; Xia J;","comments":null,"startOffset":477,"endOffset":483,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e36617a152e04c93291dca14b12d3fc9","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":752.42},"width":35.4971,"height":10.018499,"page":490}],"sectionNumber":5128,"textBefore":null,"textAfter":" Scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"527eacae0af8428ecf2909fc9dd30ff0","type":"CBI_author","value":"Heyworth C.M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":430.24002,"y":436.67},"width":36.793,"height":10.0905,"page":490},{"topLeft":{"x":412.39,"y":426.35},"width":17.272003,"height":10.0905,"page":490}],"sectionNumber":5133,"textBefore":null,"textAfter":null,"comments":null,"startOffset":704,"endOffset":716,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a4777fef68448fb7d1fb246d1284d3eb","type":"CBI_author","value":"Glatt","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":433.47705,"y":426.35},"width":18.86502,"height":10.0905,"page":490}],"sectionNumber":5133,"textBefore":"E; Heyworth C.M; ","textAfter":" H; TOXICOLOGY","comments":null,"startOffset":718,"endOffset":723,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69dafd40939bd85a7863af468ccc3a91","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.79,"y":280.76996},"width":29.007996,"height":10.0905,"page":490}],"sectionNumber":5134,"textBefore":null,"textAfter":" K; Jansson","comments":null,"startOffset":167,"endOffset":174,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c25ed06e1dbe6bb7cc765cd2baf8e66","type":"CBI_author","value":"Selling J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":439.84305,"y":551.27},"width":32.302063,"height":10.0905,"page":490}],"sectionNumber":5132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":320,"endOffset":329,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["NER"],"reference":["242d77004e49a6946765f7ee1d65d7b9"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0af497ef024b48e2171f6c6bf9824fa7","type":"CBI_author","value":"Jia","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.79,"y":228.18},"width":10.999023,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":null,"textAfter":" R-W; Liao","comments":null,"startOffset":449,"endOffset":452,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"242d77004e49a6946765f7ee1d65d7b9","type":"published_information","value":"ATLA","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":447.01602,"y":540.95},"width":24.894958,"height":10.0905,"page":490}],"sectionNumber":5132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":343,"endOffset":347,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dc8904500f382ba6dff15eac7f39e861","type":"CBI_author","value":"Appel K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.35703,"y":447.11},"width":22.932953,"height":10.0905,"page":490},{"topLeft":{"x":408.91,"y":436.67},"width":9.747986,"height":10.0905,"page":490}],"sectionNumber":5133,"textBefore":"Henschler R; ","textAfter":" E; Heyworth","comments":null,"startOffset":692,"endOffset":700,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618694Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e760660ca0e852485c9655aead097678","type":"PII","value":"178-81","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.844,"y":530.63},"width":26.596008,"height":10.0905,"page":490}],"sectionNumber":5132,"textBefore":"ATLA (1987), 14:","textAfter":null,"comments":null,"startOffset":359,"endOffset":365,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787196Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"77e99e25f69cbf68857e7fc000539a51","type":"CBI_author","value":"Liao","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.21503,"y":228.18},"width":17.39801,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":"Jia R-W; ","textAfter":" T-T; Shi","comments":null,"startOffset":458,"endOffset":462,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"98239bec65cf0d533764c13f807f6287","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.388,"y":280.76996},"width":28.891022,"height":10.0905,"page":490}],"sectionNumber":5134,"textBefore":"Jansson K; ","textAfter":" V; TOXICOL","comments":null,"startOffset":178,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"766dffa9dc9ef0bb2eecca16322c0d7f","type":"CBI_author","value":"Johnels, D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":404.23,"y":540.95},"width":39.132996,"height":10.0905,"page":490}],"sectionNumber":5132,"textBefore":null,"textAfter":null,"comments":null,"startOffset":331,"endOffset":341,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"}],"manualChanges":[],"engines":["NER"],"reference":["242d77004e49a6946765f7ee1d65d7b9"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7c5670c4a5e0fe75dea8a9ef74f4a92a","type":"PII","value":"289-294","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.57,"y":260.13},"width":31.020996,"height":10.0905,"page":490}],"sectionNumber":5134,"textBefore":"LETT; (1993), 69: ","textAfter":".","comments":null,"startOffset":215,"endOffset":222,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787196Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b07d3892deb182de886aec4ea2e2aeb6","type":"PII","value":"31-37","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.701,"y":395.37},"width":22.098999,"height":10.0905,"page":490}],"sectionNumber":5133,"textBefore":"VITRO, (2001), 15:","textAfter":".","comments":null,"startOffset":759,"endOffset":764,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787196Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0b090f553421142ce8d6061eeca5ee98","type":"PII","value":"339-347","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.517,"y":660.38},"width":30.993988,"height":10.0905,"page":490}],"sectionNumber":5130,"textBefore":"SCIENCE, (2011), 124:","textAfter":".","comments":null,"startOffset":352,"endOffset":359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787197Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6d358118208a93fffb5e26355ddba523","type":"CBI_author","value":"Ekwall","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":401.35,"y":551.27},"width":26.407013,"height":10.0905,"page":490}],"sectionNumber":5132,"textBefore":null,"textAfter":" B; Selling","comments":null,"startOffset":310,"endOffset":316,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618695Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["242d77004e49a6946765f7ee1d65d7b9"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3b6c8dc0ff2d66d4bcf8d896aae958d5","type":"CBI_author","value":"TOXICOLOGICAL SCIENCE","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.87,"y":681.02},"width":74.40387,"height":10.0905,"page":490},{"topLeft":{"x":403.39,"y":670.58},"width":38.52997,"height":10.0905,"page":490}],"sectionNumber":5130,"textBefore":null,"textAfter":null,"comments":null,"startOffset":317,"endOffset":338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ccaeeb9c36fc7ac035ac971e42fe0f6c","type":"CBI_author","value":"Stapleton","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":408.67,"y":691.34},"width":35.002075,"height":10.0905,"page":490}],"sectionNumber":5130,"textBefore":"C.M.; Wang D; ","textAfter":", H M;","comments":null,"startOffset":301,"endOffset":310,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5398dfa4e16655f3db97b85d371ab468","type":"CBI_author","value":"C.M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.47705,"y":701.78},"width":19.44101,"height":10.0905,"page":490}],"sectionNumber":5130,"textBefore":"Butt ","textAfter":"; Wang D;","comments":null,"startOffset":287,"endOffset":291,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f50ef10d68abe083a594b33de09cf77b","type":"CBI_author","value":"TOXICOL LETT","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.206,"y":270.33002},"width":64.54892,"height":10.0905,"page":490}],"sectionNumber":5134,"textBefore":null,"textAfter":null,"comments":null,"startOffset":189,"endOffset":201,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b86888d8435e596cf9f7e6f2ec4a6f28","type":"CBI_author","value":"Lu B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":422.80603,"y":207.41998},"width":19.224976,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":null,"textAfter":null,"comments":null,"startOffset":492,"endOffset":496,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bbb00bdf8c5a3f615625da41051deb7b","type":"CBI_author","value":"Xia","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.19,"y":207.41998},"width":14.085999,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":"Y-L; Wang L; ","textAfter":" J; Lu","comments":null,"startOffset":485,"endOffset":488,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"48f8831c3a17c74180e11b6a1ed58b9c","type":"PII","value":"(10-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":173.99901,"y":532.55},"width":29.541992,"height":10.0905,"page":490}],"sectionNumber":5132,"textBefore":"and high dose ","textAfter":" mM) of","comments":null,"startOffset":69,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787197Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"33157f792f7f6cf31725b98f42dde8f0","type":"CBI_author","value":"Fukui.M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.63,"y":629.18},"width":32.36502,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":"J-I; Ishiwata M; ","textAfter":"; Utsumi H;","comments":null,"startOffset":329,"endOffset":336,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618696Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a3f64b71f14c19e5fef8b5d7476504f","type":"CBI_author","value":"Kakoda M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":443.55408,"y":334.77},"width":28.980988,"height":10.0905,"page":491},{"topLeft":{"x":407.11,"y":324.45},"width":9.001007,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":null,"textAfter":null,"comments":null,"startOffset":289,"endOffset":297,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"309cc76f02883c26f1a53b55582b67fa","type":"CBI_author","value":"Bevan D.R","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":452.64703,"y":401.61},"width":23.859985,"height":10.0905,"page":491},{"topLeft":{"x":428.95,"y":391.29},"width":15.750977,"height":10.0905,"page":491}],"sectionNumber":5143,"textBefore":"G.D; Dietrich A.M; ","textAfter":"; ENVIRONEMTAL TOXICOLOGY","comments":null,"startOffset":296,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f3c07a897587f824ae7c22133841fe0","type":"CBI_author","value":"Herwijnen M.H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":430.57303,"y":216.18},"width":38.988983,"height":10.0905,"page":491},{"topLeft":{"x":402.91,"y":205.73999},"width":17.794006,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":null,"textAfter":null,"comments":null,"startOffset":409,"endOffset":422,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6914f9de92fe8e78e21d24a42fbc6c89","type":"CBI_author","value":"Wu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.42502,"y":716.78},"width":13.897003,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"C; Lam P.K.S; ","textAfter":" R.S.S; Giesy","comments":null,"startOffset":276,"endOffset":278,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d09e011a2a4e94f04c4f588e88b57f3c","type":"CBI_author","value":"Dietrich A.M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.43,"y":401.61},"width":49.402008,"height":10.0905,"page":491}],"sectionNumber":5143,"textBefore":"R.D; Boardman G.D; ","textAfter":"; Bevan D.R;","comments":null,"startOffset":282,"endOffset":294,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0dc372c64909f6e37712ced726399739","type":"CBI_author","value":"Manabe","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.51,"y":314.01},"width":30.051971,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":"M; Kiyoshige K; ","textAfter":" H; Mitade","comments":null,"startOffset":312,"endOffset":318,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4baa8728986f131342a40bb3340c66fa","type":"CBI_author","value":"Utsumi H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":446.54807,"y":505.79},"width":27.370056,"height":10.0905,"page":491},{"topLeft":{"x":407.35,"y":495.47},"width":7.497986,"height":10.0905,"page":491}],"sectionNumber":5142,"textBefore":"H; Umetani K; ","textAfter":"; Nakamuro K;","comments":null,"startOffset":333,"endOffset":341,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"52225404aed9ae1febf51ffa1e4643d6","type":"CBI_author","value":"Boardman G.D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":408.91,"y":411.93},"width":55.809967,"height":10.0905,"page":491}],"sectionNumber":5143,"textBefore":"Shannon R.D; ","textAfter":"; Dietrich A.M;","comments":null,"startOffset":268,"endOffset":280,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59f6f8c9947580c2b83e2e7285aa109a","type":"CBI_author","value":"Utsumi H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":436.70206,"y":629.18},"width":36.154053,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":"Ishiwata M; Fukui.M; ","textAfter":"; Hamada A;","comments":null,"startOffset":338,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53483882ad02d18b69dcb9078a465201","type":"CBI_author","value":"Ishiwata M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":415.99,"y":639.62},"width":41.626038,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":"Murayama J-I; ","textAfter":"; Fukui.M; Utsumi","comments":null,"startOffset":317,"endOffset":327,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618697Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a211396b7c6c5743ecdf452112ee2cf3","type":"CBI_author","value":"Murayama J-I","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.95,"y":649.94},"width":51.666992,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":null,"textAfter":"; Ishiwata M;","comments":null,"startOffset":303,"endOffset":315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf1adab9f66ca3227b86fe44af5ee732","type":"PII","value":"267-276","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.33798,"y":598.34},"width":31.093018,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":"KAGAKU; (1990), 36: ","textAfter":".","comments":null,"startOffset":384,"endOffset":391,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787198Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d25515aa4a1ff1f985fc7316f914790","type":"CBI_author","value":"ANALYTICAL BIOCHEMISTRY","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":408.67,"y":551.99},"width":58.92389,"height":10.0905,"page":491},{"topLeft":{"x":402.55,"y":541.67},"width":68.44592,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":null,"textAfter":null,"comments":null,"startOffset":254,"endOffset":277,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5dcc8fabf0dcc7caedc3a8d9c440a0f7","type":"PII","value":"57-66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.26202,"y":350.01},"width":22.014984,"height":10.0905,"page":491}],"sectionNumber":5143,"textBefore":"CHEMISTRY; (1991); 10: ","textAfter":".","comments":null,"startOffset":358,"endOffset":363,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787198Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e1b837c7503c39483aa5e18022bad798","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.153,"y":303.69},"width":15.96698,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":"C; Murayama J; ","textAfter":" S.K; Hamada","comments":null,"startOffset":344,"endOffset":347,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f70a9d8c0d79c3beb503163bb227c78f","type":"CBI_author","value":"Hamada A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.277,"y":293.37},"width":39.645996,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":"J; Han S.K; ","textAfter":"; WATER SCIENCE","comments":null,"startOffset":353,"endOffset":361,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"915459d564e9ba2a26c6ceb056084cba","type":"CBI_author","value":"Strong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":275.93,"y":651.86},"width":25.156006,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":null,"textAfter":" morphological changes","comments":null,"startOffset":157,"endOffset":163,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618698Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5611aa9628560bb9d07592c20b95163f","type":"CBI_author","value":"Utsumi H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.63,"y":334.77},"width":36.154053,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":null,"textAfter":"; Kakoda M;","comments":null,"startOffset":279,"endOffset":287,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"154c485d6c0d4e4040175a32cb74125a","type":"CBI_author","value":"Ma Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.87,"y":727.22},"width":21.753998,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":null,"textAfter":null,"comments":null,"startOffset":252,"endOffset":256,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cc9f8d29ae0dab7646fc089f56fdd56a","type":"CBI_author","value":"Zhang","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.075,"y":583.07},"width":23.994965,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"H; Liu J; ","textAfter":" Z; Li","comments":null,"startOffset":210,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1697a4f71a04263f1358d9519fd9c4bb","type":"CBI_author","value":"Ueno H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.09903,"y":516.23},"width":29.313965,"height":10.0905,"page":491}],"sectionNumber":5142,"textBefore":"Sakazaki H; ","textAfter":"; Umetani K;","comments":null,"startOffset":314,"endOffset":320,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8040a697dc99136ffa8f31371de27eb5","type":"CBI_author","value":"Liu J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.08,"y":583.07},"width":19.243011,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"Qin H; ","textAfter":"; Zhang Z;","comments":null,"startOffset":203,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04e814686030f3c5cdaa650821945781","type":"CBI_author","value":"Qin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.99,"y":583.07},"width":14.5,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":null,"textAfter":" H; Liu","comments":null,"startOffset":196,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1cf00af916a3ff40571ee5fa039bffb0","type":"CBI_author","value":"EISEI KAGAKU","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":448.23697,"y":618.86},"width":23.049988,"height":10.0905,"page":491},{"topLeft":{"x":402.55,"y":608.54},"width":39.915894,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":"H; Hamada A; ","textAfter":"; (1990), 36:","comments":null,"startOffset":358,"endOffset":370,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3f450a39f780c4edf656995d967bd5b8","type":"CBI_author","value":"Murayama","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.70102,"y":303.69},"width":39.880005,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":"H; Mitade C; ","textAfter":" J; Han","comments":null,"startOffset":332,"endOffset":340,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f42ee48c193e16f8081f8e6026cd2db2","type":"CBI_author","value":"Yuan","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.538,"y":562.31},"width":20.493988,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"G; Yang Y; ","textAfter":" X; Wu","comments":null,"startOffset":240,"endOffset":244,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618699Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"326c30b611599489b0121b2c9ef8c5c1","type":"CBI_author","value":"van","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":435.145,"y":226.5},"width":13.897003,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":"van Agen E; ","textAfter":" Breda S.G.J;","comments":null,"startOffset":392,"endOffset":395,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ef5c6ad5db3d7fbf9f569bd0886ee34f","type":"CBI_author","value":"van den Berg K.L","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":404.11,"y":142.97998},"width":65.47595,"height":10.0905,"page":491}],"sectionNumber":5146,"textBefore":null,"textAfter":null,"comments":null,"startOffset":248,"endOffset":264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c1920d91f2fded43b70460210969c1c5","type":"CBI_author","value":"Sakazaki H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.19,"y":516.23},"width":42.139008,"height":10.0905,"page":491}],"sectionNumber":5142,"textBefore":null,"textAfter":"; Ueno H;","comments":null,"startOffset":302,"endOffset":312,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8daf87e92cb54b05e472ddc7dc46eb6","type":"CBI_author","value":"van Agen E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":462.61905,"y":236.94},"width":13.897003,"height":10.0905,"page":491},{"topLeft":{"x":403.15,"y":226.5},"width":28.197968,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":null,"textAfter":null,"comments":null,"startOffset":380,"endOffset":390,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"58edbc207e54d7dc53200aa282870d60","type":"CBI_author","value":"Zhang X","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.35,"y":696.02},"width":32.787964,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"J.P; Hecker M; ","textAfter":"; Zhou B;","comments":null,"startOffset":307,"endOffset":314,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aaa2123af5310d913ffe4fc06fbe4139","type":"CBI_author","value":"Staal Y.C.M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":424.47403,"y":205.73999},"width":46.180054,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":null,"textAfter":null,"comments":null,"startOffset":424,"endOffset":435,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a942e50ff95e0b12ef156e118d0dae64","type":"CBI_author","value":"Kiyoshige K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.92603,"y":324.45},"width":46.58499,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":null,"textAfter":null,"comments":null,"startOffset":299,"endOffset":310,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b577628c1962be72a482998500d1a880","type":"CBI_author","value":"Giesy J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.83,"y":706.46},"width":27.640015,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"P.K.S; Wu R.S.S; ","textAfter":".P; Hecker M;","comments":null,"startOffset":286,"endOffset":293,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a2b9ed11d5738d19f225aaca109e16d2","type":"CBI_author","value":"CHEMICOBIOLOGICAL INTERACTIONS","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":415.27,"y":132.53998},"width":45.547028,"height":10.0905,"page":491},{"topLeft":{"x":410.11,"y":122.22003},"width":55.935913,"height":10.0905,"page":491},{"topLeft":{"x":403.63,"y":111.900024},"width":66.339905,"height":10.0905,"page":491}],"sectionNumber":5146,"textBefore":null,"textAfter":null,"comments":null,"startOffset":266,"endOffset":296,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6187Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bb6e6621703f0d5c2c998326739198f0","type":"CBI_author","value":"Breda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.36398,"y":226.5},"width":22.50998,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":"Agen E; van ","textAfter":" S.G.J; Herwijnen","comments":null,"startOffset":396,"endOffset":401,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6335d3e36421a8efcdae54b204ae93c6","type":"CBI_author","value":"Zhou","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.908,"y":696.02},"width":19.890991,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"M; Zhang X; ","textAfter":" B; TOXICOLOGY,","comments":null,"startOffset":316,"endOffset":320,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"36f62db2ad38c8bede999eb5580707b9","type":"CBI_author","value":"Mitade C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":446.06198,"y":314.01},"width":26.46106,"height":10.0905,"page":491},{"topLeft":{"x":399.91,"y":303.69},"width":7.0029907,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":null,"textAfter":null,"comments":null,"startOffset":322,"endOffset":330,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0034a263852cdc8343981c839c5e6c11","type":"CBI_author","value":"Shannon R.D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.03,"y":422.39},"width":49.563965,"height":10.0905,"page":491}],"sectionNumber":5143,"textBefore":null,"textAfter":"; Boardman G.D;","comments":null,"startOffset":255,"endOffset":266,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae730512ecb1f3c690727328b696a04d","type":"CBI_author","value":"Liu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.394,"y":727.22},"width":13.402008,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"Ma Y; ","textAfter":" C; Lam","comments":null,"startOffset":258,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7e7476ccc1dcb3f21047e92077c94558","type":"CBI_author","value":"Hamada A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.83,"y":618.86},"width":39.753967,"height":10.0905,"page":491}],"sectionNumber":5140,"textBefore":"Fukui.M; Utsumi H; ","textAfter":"; EISEI KAGAKU;","comments":null,"startOffset":348,"endOffset":356,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9b2d116474cb0dbf23fe56a595be3ac9","type":"PII","value":"258-271","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.33798,"y":454.19},"width":31.093018,"height":10.0905,"page":491}],"sectionNumber":5142,"textBefore":"SCIENCE; (2001); 47: ","textAfter":".","comments":null,"startOffset":394,"endOffset":401,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787201Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9af25301728a1e9b712b6cc60794d054","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":752.42},"width":35.4971,"height":10.018499,"page":491}],"sectionNumber":5138,"textBefore":null,"textAfter":" Scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618701Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9b91fbe32c8cc5e5d77a70cde2a13918","type":"CBI_author","value":"Lam","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":454.92703,"y":727.22},"width":17.362,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"Y; Liu C; ","textAfter":" P.K.S; Wu","comments":null,"startOffset":265,"endOffset":268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a020e0ae05da2781145a12d3848a92b","type":"PII","value":"63-75","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.26202,"y":101.70001},"width":22.014984,"height":10.0905,"page":491}],"sectionNumber":5146,"textBefore":"INTERACTIONS; (1990); 76: ","textAfter":".","comments":null,"startOffset":310,"endOffset":315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787202Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9c21c7d4d6686b1b940c733a08aa528c","type":"CBI_author","value":"Nakamuro K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.618,"y":495.47},"width":47.67099,"height":10.0905,"page":491}],"sectionNumber":5142,"textBefore":"K; Utsumi H; ","textAfter":"; JOURNAL OF","comments":null,"startOffset":343,"endOffset":353,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3a358cb6b3383ccb59db996c4487937","type":"PII","value":"325-332","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":442.70203,"y":252.09003},"width":31.008972,"height":10.0905,"page":491}],"sectionNumber":5144,"textBefore":"TECHNOLOGY; (1992); 25: ","textAfter":".","comments":null,"startOffset":405,"endOffset":412,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787202Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"24f2f238e88253c21eac4c9215cb313b","type":"CBI_author","value":"Umetani K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.07,"y":505.79},"width":40.70804,"height":10.0905,"page":491}],"sectionNumber":5142,"textBefore":"H; Ueno H; ","textAfter":"; Utsumi H;","comments":null,"startOffset":322,"endOffset":331,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53ce65cf74d4b617b18f5ebb66f59e10","type":"CBI_author","value":"Yang Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":456.25003,"y":572.75},"width":20.60196,"height":10.0905,"page":491},{"topLeft":{"x":403.27,"y":562.31},"width":7.497986,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"J; Gao G; ","textAfter":"; Yuan X;","comments":null,"startOffset":232,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40ff317add5e2fdf6b79e8375a6f8492","type":"CBI_author","value":"Gao","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":427.92706,"y":572.75},"width":15.849976,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"Z; Li J; ","textAfter":" G; Yang","comments":null,"startOffset":225,"endOffset":228,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1179d517cf852a8552c64cb3b6886523","type":"CBI_author","value":"van Delft J.H.M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.43,"y":236.94},"width":59.347046,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":null,"textAfter":null,"comments":null,"startOffset":363,"endOffset":378,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e3aae5f448942b99d27a46194b6810c7","type":"CBI_author","value":"Hecker M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.66504,"y":706.46},"width":37.07202,"height":10.0905,"page":491}],"sectionNumber":5139,"textBefore":"R.S.S; Giesy J.P; ","textAfter":"; Zhang X;","comments":null,"startOffset":297,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618702Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aa9b1bc4c3a14b5d53fcdf06542f58b8","type":"PII","value":"60-66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":449.296,"y":531.47},"width":22.138,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"BIOCHEMISTRY; (2014), 462: ","textAfter":".","comments":null,"startOffset":292,"endOffset":297,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787202Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f16b199a62fb90d1bdff39a5329f987b","type":"CBI_author","value":"Kleinjans J.C.S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":408.43,"y":195.41998},"width":56.863037,"height":10.0905,"page":491}],"sectionNumber":5145,"textBefore":null,"textAfter":null,"comments":null,"startOffset":437,"endOffset":452,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e25f96897fc328989253b5fa87e1bed8","type":"CBI_author","value":"Wu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.62198,"y":562.31},"width":13.897003,"height":10.0905,"page":491}],"sectionNumber":5141,"textBefore":"Y; Yuan X; ","textAfter":" D; ANALYTICAL","comments":null,"startOffset":248,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e6884281e6681700dd92f5fdcb69453","type":"CBI_author","value":"Huang","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":449.76703,"y":643.58},"width":25.047974,"height":10.0905,"page":492}],"sectionNumber":5150,"textBefore":"Z; Qi Y; ","textAfter":" D; Zhang","comments":null,"startOffset":362,"endOffset":367,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21dbb1ad87e5d2c1117627ab0254acd0","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":752.42},"width":35.4971,"height":10.018499,"page":492}],"sectionNumber":5148,"textBefore":null,"textAfter":" Scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e4a1743190f079e8d1244e6c8d170ba3","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":119.480995,"y":696.02},"width":19.04499,"height":10.0905,"page":492}],"sectionNumber":5149,"textBefore":"flow cytometry on ","textAfter":" cells","comments":null,"startOffset":66,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b7c5b11dd39d1fdf2f50a6c408a46cd8","type":"CBI_author","value":"Zhang","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.058,"y":633.26},"width":24.08496,"height":10.0905,"page":492}],"sectionNumber":5150,"textBefore":"Y; Huang D; ","textAfter":" Y; INTERNATIONAL","comments":null,"startOffset":371,"endOffset":376,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"94850b841a2a69615ed3d54e96d07986","type":"PII","value":"769-816","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.85,"y":356.85},"width":31.110992,"height":10.0905,"page":492}],"sectionNumber":5156,"textBefore":"(1999) 71 (2) ","textAfter":null,"comments":null,"startOffset":125,"endOffset":132,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787203Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"11896c2be05640f75e7650fa879e6d29","type":"PII","value":"(1999) 71","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.63,"y":356.85},"width":36.306976,"height":10.0905,"page":492}],"sectionNumber":5156,"textBefore":"chemicals to humans, ","textAfter":" (2) 769-816","comments":null,"startOffset":111,"endOffset":120,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618703Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787203Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a69cb8002accd7157b7517059c3c692e","type":"PII","value":"(1989) 93 208","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":469.66013,"y":306.45},"width":51.89499,"height":10.0905,"page":492}],"sectionNumber":5158,"textBefore":"Environmental Health Criteria, ","textAfter":" p","comments":null,"startOffset":97,"endOffset":110,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787203Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"39ada536879d7e1217fe73ea683f3dbd","type":"CBI_author","value":"Zhang X","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.19,"y":654.02},"width":32.787964,"height":10.0905,"page":492}],"sectionNumber":5150,"textBefore":null,"textAfter":"; Zhang X;","comments":null,"startOffset":331,"endOffset":338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47caa614ef4cbb8c320af140971120db","type":"PII","value":"479-487","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.72107,"y":673.46},"width":31.029938,"height":10.0905,"page":492}],"sectionNumber":5149,"textBefore":"; (2008); 3:","textAfter":".","comments":null,"startOffset":463,"endOffset":470,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787203Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c619d4d87204704cc2529e5fabcc2fd3","type":"published_information","value":"Environmental Health","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":355.63,"y":306.45},"width":80.686066,"height":10.0905,"page":492}],"sectionNumber":5158,"textBefore":null,"textAfter":null,"comments":null,"startOffset":66,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4119fdf37905ddad05339a8ef0e2d71b","type":"CBI_author","value":"Zhou","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":422.35,"y":716.9},"width":20.007996,"height":10.0905,"page":492}],"sectionNumber":5149,"textBefore":"Y-L; Wang L; ","textAfter":" Q; ASIAN","comments":null,"startOffset":412,"endOffset":416,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d35b6b845b3bf1d22b92cd184ab4789e","type":"CBI_author","value":"Zhang X","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.748,"y":654.02},"width":32.67096,"height":10.0905,"page":492}],"sectionNumber":5150,"textBefore":"Zhang X; ","textAfter":"; Niu Z;","comments":null,"startOffset":340,"endOffset":347,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8d23184d7dc82aabbceb4049a94b9e9","type":"CBI_author","value":"Niu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.23,"y":643.58},"width":14.5,"height":10.0905,"page":492}],"sectionNumber":5150,"textBefore":"X; Zhang X; ","textAfter":" Z; Qi","comments":null,"startOffset":349,"endOffset":352,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f1f596dcff0697dbc88edb890666604","type":"PII","value":"047 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.203,"y":331.65},"width":25.669037,"height":10.0905,"page":492}],"sectionNumber":5157,"textBefore":"Agency, (1984) EPA/540/1-86/","textAfter":" p","comments":null,"startOffset":129,"endOffset":135,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787204Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"339ed99f955bba8ac317f3434851185d","type":"hint_only","value":"author","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":76.224,"y":473.63},"width":28.872993,"height":10.018499,"page":492}],"sectionNumber":5153,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0586cbce364f01488b026d9d143463a1","type":"published_information","value":"ISSN","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":394.231,"y":428.03},"width":20.449005,"height":10.0905,"page":492}],"sectionNumber":5154,"textBefore":null,"textAfter":null,"comments":null,"startOffset":152,"endOffset":156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618704Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2115fd6d84f9b8b92d514c3ba7c476a9","type":"CBI_author","value":"Shi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.71,"y":727.22},"width":13.087006,"height":10.0905,"page":492}],"sectionNumber":5149,"textBefore":null,"textAfter":" Y-L; Wang","comments":null,"startOffset":395,"endOffset":398,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1e627d949bb6c498f22dbc7a81373f7a","type":"PII","value":"28 113","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-32: Summary of Risk Evaluations by Regulatory Agencies for 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.72302,"y":392.37},"width":25.659973,"height":10.0905,"page":492}],"sectionNumber":5155,"textBefore":"Service, (1990) ATSDR/TP-90/","textAfter":" p","comments":null,"startOffset":159,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787204Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"194faca4c11841896c8a12dbf32cf392","type":"CBI_author","value":"Wang L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.778,"y":727.22},"width":30.11499,"height":10.0905,"page":492}],"sectionNumber":5149,"textBefore":"Shi Y-L; ","textAfter":"; Zhou Q;","comments":null,"startOffset":404,"endOffset":410,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d74afecd23fd11757d5614d26608c08","type":"PII","value":"48 144 240 480","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-34: Extrapolation of systemic exposure of 2,4,6 TCP and related metabolites after oral\nadministration of non-experimentally tested high doses of SYN545974 in rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":413.95,"y":260.73004},"width":10.059998,"height":10.0905,"page":493},{"topLeft":{"x":447.1,"y":260.73004},"width":42.940002,"height":10.095,"page":493},{"topLeft":{"x":507.46,"y":260.73004},"width":14.620026,"height":10.095,"page":493}],"sectionNumber":5172,"textBefore":null,"textAfter":null,"comments":null,"startOffset":82,"endOffset":96,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787204Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"07458a37cc2c7f4b975fb7a7ce679e8e","type":"PII","value":"100 300 500 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-34: Extrapolation of systemic exposure of 2,4,6 TCP and related metabolites after oral\nadministration of non-experimentally tested high doses of SYN545974 in rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.67,"y":315.45},"width":14.619995,"height":10.0905,"page":493},{"topLeft":{"x":447.1,"y":315.45},"width":77.12503,"height":10.095,"page":493}],"sectionNumber":5169,"textBefore":null,"textAfter":null,"comments":null,"startOffset":54,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787205Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"57e0b0961ff15b43956540b7f0958066","type":"PII","value":"112 224","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-34: Extrapolation of systemic exposure of 2,4,6 TCP and related metabolites after oral\nadministration of non-experimentally tested high doses of SYN545974 in rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":305.33,"y":260.73004},"width":14.619995,"height":10.095,"page":493},{"topLeft":{"x":337.27,"y":260.73004},"width":14.619995,"height":10.095,"page":493}],"sectionNumber":5172,"textBefore":null,"textAfter":null,"comments":null,"startOffset":70,"endOffset":77,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787205Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"94b03923baa01fe4130a44a3fb0b374c","type":"CBI_author","value":"MacDonald","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.73137,"y":404.73},"width":38.83629,"height":9.65418,"page":493}],"sectionNumber":5183,"textBefore":"the study of ","textAfter":" and Jewkes","comments":null,"startOffset":2875,"endOffset":2884,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d81ac212d57f5e675f8601e3065585ad","type":"CBI_author","value":"Jewkes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.08485,"y":404.73},"width":23.914017,"height":9.65418,"page":493}],"sectionNumber":5183,"textBefore":"of MacDonald and ","textAfter":" (2015) presented","comments":null,"startOffset":2889,"endOffset":2895,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb108cc4d66f35ce8a2a0d4beebd5766","type":"PII","value":"300 500 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-34: Extrapolation of systemic exposure of 2,4,6 TCP and related metabolites after oral\nadministration of non-experimentally tested high doses of SYN545974 in rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.93,"y":315.45},"width":14.619995,"height":10.0905,"page":493},{"topLeft":{"x":305.33,"y":315.45},"width":48.704987,"height":10.095,"page":493}],"sectionNumber":5170,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618705Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787205Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7937bf6147f6b389b86396989fc64c6e","type":"CBI_author","value":"MacDonald","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":183.223,"y":690.26},"width":53.05365,"height":11.017679,"page":493}],"sectionNumber":5183,"textBefore":"The study of ","textAfter":" and Jewkes","comments":null,"startOffset":1744,"endOffset":1753,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5657fb60773d532a1cd2dfe8f3bf775c","type":"CBI_author","value":"Jewkes","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":256.62802,"y":690.26},"width":32.86142,"height":11.017679,"page":493}],"sectionNumber":5183,"textBefore":"of MacDonald and ","textAfter":" (2015) showed","comments":null,"startOffset":1758,"endOffset":1764,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3fd7bc0e5679e57d43e8fef66183f61a","type":"PII","value":"28 85 142 283","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-34: Extrapolation of systemic exposure of 2,4,6 TCP and related metabolites after oral\nadministration of non-experimentally tested high doses of SYN545974 in rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":413.95,"y":244.14001},"width":10.059998,"height":10.0905,"page":493},{"topLeft":{"x":449.38,"y":244.14001},"width":40.660004,"height":10.095,"page":493},{"topLeft":{"x":507.46,"y":244.14001},"width":14.620026,"height":10.095,"page":493}],"sectionNumber":5173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":34,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787206Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"950e6084d16dcc35a3ed93efdc902695","type":"published_information","value":"Chemosphere","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":335.7582,"y":288.93},"width":56.009155,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":null,"textAfter":null,"comments":null,"startOffset":328,"endOffset":339,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5289dd30fdd8deceef6bee03ed64f36","type":"CBI_author","value":"Klein W","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":351.25687,"y":300.45},"width":35.222595,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"Kraus A and ","textAfter":" (1981). Excretion","comments":null,"startOffset":247,"endOffset":254,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["950e6084d16dcc35a3ed93efdc902695"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f611f79a49d05b26c3191d7ee658672e","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.283,"y":186.29999},"width":82.55249,"height":11.017679,"page":494}],"sectionNumber":5183,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6849,"endOffset":6866,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b4fc6e55da3f0b48af9005ff62ed5ba0","type":"CBI_author","value":"Bahig M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.1009,"y":300.45},"width":36.118988,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"8042, Neuherberg. Published: ","textAfter":", Kraus A","comments":null,"startOffset":226,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["950e6084d16dcc35a3ed93efdc902695"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fd441af64bf5d5f1c11ce6cd16e020ce","type":"CBI_author","value":"Kraus A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":298.2696,"y":300.45},"width":34.684753,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"Published: Bahig M, ","textAfter":" and Klein","comments":null,"startOffset":235,"endOffset":242,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["950e6084d16dcc35a3ed93efdc902695"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c60cfb442fcec2b0cb91cf604f363aed","type":"CBI_author","value":"Bahig M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.01263,"y":323.37},"width":38.608963,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"Report: K-CA 5.8.1/14 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618706Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["950e6084d16dcc35a3ed93efdc902695"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f6fcd540394ad5d554ec93663731bb69","type":"CBI_author","value":"Bahig","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":101.62666,"y":701.54},"width":20.239716,"height":9.65418,"page":494}],"sectionNumber":5183,"textBefore":"* Based on ","textAfter":" et al.","comments":null,"startOffset":4448,"endOffset":4453,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3ac012e43de7bf63a99af306d1409cf","type":"PII","value":"225 114","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-35: Estimated doses of systemic exposure after oral administration of 2,4,6 TCP at\ndoses eliciting leukemia in males rats in the long-term study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.17,"y":711.38},"width":14.619995,"height":10.0905,"page":494},{"topLeft":{"x":381.43,"y":711.38},"width":14.619995,"height":10.0905,"page":494}],"sectionNumber":5179,"textBefore":null,"textAfter":null,"comments":null,"startOffset":54,"endOffset":61,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787206Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db3496cdf11f26428ecaceb832933e95","type":"PII","value":"323-327","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.1257,"y":288.93},"width":34.42395,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"Rats. Chemosphere 10:","textAfter":". Syngenta File","comments":null,"startOffset":343,"endOffset":350,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787207Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"86bf47e9c6cd8c1ad787f33467550d15","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":444.6193,"y":288.93},"width":37.931763,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"Rats. Chemosphere 10:323-327. ","textAfter":" File No.","comments":null,"startOffset":352,"endOffset":360,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["950e6084d16dcc35a3ed93efdc902695"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a6ce302019c1a5dbdc3b60b2f4cd9b12","type":"CBI_author","value":"Balikova","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.68526,"y":86.46399},"width":40.567337,"height":11.017679,"page":494}],"sectionNumber":5183,"textBefore":"data reported by ","textAfter":" (1988) (see","comments":null,"startOffset":7415,"endOffset":7423,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bd0177d2856ccbda4939174e2a313541","type":"CBI_address","value":"Gesellschaft für Strahlen- und Umweltforschung, Institut für Ökologische Chemie, D – 8042, Neuherberg","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RMS consideration regarding the carcinogenic potential of 2,4,6 TCP and the dose level selection\nfor SYN545974 toxicity studies:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":169.7756,"y":311.85004},"width":350.14438,"height":10.526819,"page":494},{"topLeft":{"x":133.82,"y":300.45},"width":73.10045,"height":10.526819,"page":494}],"sectionNumber":5181,"textBefore":"C In Rats. ","textAfter":". Published: Bahig","comments":null,"startOffset":112,"endOffset":213,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["950e6084d16dcc35a3ed93efdc902695"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d8799649efd9e27ab2caa3e8f7a87ece","type":"PII","value":"250 127","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-35: Estimated doses of systemic exposure after oral administration of 2,4,6 TCP at\ndoses eliciting leukemia in males rats in the long-term study","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.17,"y":733.1},"width":14.619995,"height":10.0905,"page":494},{"topLeft":{"x":381.43,"y":733.1},"width":14.619995,"height":10.0905,"page":494}],"sectionNumber":5177,"textBefore":null,"textAfter":null,"comments":null,"startOffset":37,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787207Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ff2d36c3250313f58af3b64b53c152b7","type":"hint_only","value":"purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":123.206985,"y":361.05},"width":27.981995,"height":10.018499,"page":495}],"sectionNumber":5185,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62d95b1d64be573f08398a02b2bfed79","type":"CBI_author","value":"Berthold","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":364.02765,"y":336.33},"width":39.507477,"height":11.017679,"page":496}],"sectionNumber":5188,"textBefore":"a scanner (","textAfter":"-Frieseke, Karlsruhe). Isolation","comments":null,"startOffset":1219,"endOffset":1227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618707Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a0b9b8c80d7a1af9069401de72ffb8fb","type":"PII","value":"80-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.45947,"y":108.53998},"width":32.24051,"height":11.017679,"page":496}],"sectionNumber":5188,"textBefore":"m, chromosorb W-AW-DMCS ","textAfter":" mesh 1%","comments":null,"startOffset":2684,"endOffset":2690,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787207Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b291f8226fa1cde0e95684814233cdcc","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":242.081,"y":728.18},"width":30.528961,"height":10.0905,"page":496}],"sectionNumber":5186,"textBefore":"Wistar, ","textAfter":" Dawley","comments":null,"startOffset":49,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93401a6530fd5ec5b9b16fcdbf020dd8","type":"PII","value":"225-250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.65,"y":715.34},"width":31.05101,"height":10.0905,"page":496}],"sectionNumber":5186,"textBefore":null,"textAfter":" g","comments":null,"startOffset":86,"endOffset":93,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787208Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2a50d953f1b88e7ca06b180324acf850","type":"published_information","value":"Archives of Toxicology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":320.5999,"y":275.25},"width":97.89102,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":null,"textAfter":null,"comments":null,"startOffset":334,"endOffset":356,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e84c26b99f68388aec1f85d3374855a1","type":"CBI_author","value":"Aitio A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":377.05328,"y":286.76996},"width":33.370056,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":"K, Boudène C, ","textAfter":" (1986). Kinetics","comments":null,"startOffset":251,"endOffset":258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["2a50d953f1b88e7ca06b180324acf850"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c139ea20d361473221b22e0073c1d58","type":"CBI_author","value":"Pekari K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":278.50897,"y":286.76996},"width":38.39981,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":"37, Finland. Published: ","textAfter":", Boudène C,","comments":null,"startOffset":230,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["2a50d953f1b88e7ca06b180324acf850"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21b809422042146440e04be54daa3216","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (~99%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":173.82},"width":82.55249,"height":11.017679,"page":497}],"sectionNumber":5196,"textBefore":null,"textAfter":null,"comments":null,"startOffset":86,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2f07d97c957ed472062a184738a0cfb7","type":"PII","value":"41-44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":433.48672,"y":275.25},"width":24.863098,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":"of Toxicology 59:","textAfter":". Syngenta File","comments":null,"startOffset":360,"endOffset":365,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618708Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787208Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"af599ad5d3b52f714d5bb3caa80611b1","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":466.3636,"y":275.25},"width":38.15088,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":"of Toxicology 59:41-44. ","textAfter":" File No.","comments":null,"startOffset":367,"endOffset":375,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["2a50d953f1b88e7ca06b180324acf850"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f38af46d74e86750e3de4575804d1d6c","type":"CBI_author","value":"Pekari K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.49072,"y":309.81},"width":38.85797,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":"Report: K-CA 5.8.1/15 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["2a50d953f1b88e7ca06b180324acf850"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f35dec4d02b4e909da7b8173c1b77f2","type":"CBI_author","value":"Bahig M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":434.09946,"y":349.65},"width":39.838715,"height":11.017679,"page":497}],"sectionNumber":5195,"textBefore":"extent isomerized. (","textAfter":" et al.,","comments":null,"startOffset":2008,"endOffset":2015,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6a4d3f39328c73f1d05ee79657e8e164","type":"CBI_author","value":"Boudène C","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":323.09988,"y":286.76996},"width":47.812073,"height":10.526819,"page":497}],"sectionNumber":5193,"textBefore":"Published: Pekari K, ","textAfter":", Aitio A","comments":null,"startOffset":240,"endOffset":249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["2a50d953f1b88e7ca06b180324acf850"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5552a758630da4a2826a4b4059ff4e0d","type":"CBI_address","value":"Sigma Chemical Company","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":190.74384,"y":343.29},"width":123.33423,"height":11.017679,"page":498}],"sectionNumber":5200,"textBefore":"(Deventer, Netherlands) or ","textAfter":" (St. Loius,","comments":null,"startOffset":333,"endOffset":355,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4d3dc93142b7933481e4537f5a51638c","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":472.19},"width":28.467995,"height":10.018499,"page":498}],"sectionNumber":5198,"textBefore":null,"textAfter":null,"comments":null,"startOffset":138,"endOffset":145,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bdca927dba2c07160332ede7b8493b3b","type":"CBI_author","value":"Merk","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":312.74716,"y":356.01},"width":24.86847,"height":11.017679,"page":498}],"sectionNumber":5200,"textBefore":"were purchased from ","textAfter":" (Darmstadt, F.R.G),","comments":null,"startOffset":260,"endOffset":264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7016724f92885e1ae17617beb9672a1","type":"CBI_author","value":"Baker","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":454.71063,"y":356.01},"width":27.098572,"height":11.017679,"page":498}],"sectionNumber":5200,"textBefore":"(Darmstadt, F.R.G), J.T. ","textAfter":" Chemicals (Deventer,","comments":null,"startOffset":290,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0846190790d510a936028636ef487d96","type":"CBI_author","value":"Balikova M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.31741,"y":637.82},"width":51.622635,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"Report: K-CA 5.8.1/16 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618709Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f98e2bf08844cfe82b73f4edf81e6407","type":"CBI_author","value":"Pekari K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":436.85944,"y":690.26},"width":39.794617,"height":11.017679,"page":500}],"sectionNumber":5204,"textBefore":"1.8 hours). (","textAfter":" et al.,","comments":null,"startOffset":1231,"endOffset":1239,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ec1567b2c1197d02f13e591f45b687dc","type":"CBI_author","value":"Crkovska J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.9938,"y":603.26},"width":46.955475,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"M, Stipek S, ","textAfter":" (1988). Process","comments":null,"startOffset":307,"endOffset":317,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1e3897183ccc27dbb93d620a7ba2dee8","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":490.31},"width":82.55249,"height":11.017679,"page":500}],"sectionNumber":5204,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1448,"endOffset":1465,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cdd134f42521518e850c7e853729c1fc","type":"CBI_author","value":"Charles","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":359.8324,"y":614.78},"width":31.48761,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"of General Medicine, ","textAfter":" University, Prague.","comments":null,"startOffset":246,"endOffset":253,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e95b80bab5088b72044cc2559ec47d41","type":"CBI_author","value":"Stipek S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.859,"y":603.26},"width":35.800247,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"Published. Balikova M, ","textAfter":", Crkovska J","comments":null,"startOffset":297,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8618e7c58ca2630b8274b9bd9fbca9f7","type":"PII","value":"243-248","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":217.83263,"y":580.31},"width":34.536972,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"Clinica Bohemoslovaca, 17: ","textAfter":". Syngenta File","comments":null,"startOffset":482,"endOffset":489,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787209Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b486aad431f2fc7e10c4104a676aed02","type":"CBI_author","value":"Balikova M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.82,"y":603.26},"width":49.664566,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"University, Prague. Published. ","textAfter":", Stipek S,","comments":null,"startOffset":285,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61871Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7cfbf5a834b7276df846b7a0371da0a4","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":256.32968,"y":580.31},"width":38.05127,"height":10.526819,"page":500}],"sectionNumber":5202,"textBefore":"Bohemoslovaca, 17: 243-248. ","textAfter":" File No.","comments":null,"startOffset":491,"endOffset":499,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb7d64c68ac8b377fc2e6779c54d94f2","type":"PII","value":"100 28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-37: Rates of elimination in urine of 2,4,6-TCP in free form (% of a single oral dose)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.37,"y":269.37},"width":14.490997,"height":10.0905,"page":502},{"topLeft":{"x":402.91,"y":269.37},"width":9.937012,"height":10.0905,"page":502}],"sectionNumber":5212,"textBefore":null,"textAfter":null,"comments":null,"startOffset":195,"endOffset":201,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78721Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"046462670f7fae86daed231b2e557181","type":"PII","value":"497-506","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Nephrotoxicity","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":413.07877,"y":617.78},"width":34.790863,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"of Toxicology, 9(5): ","textAfter":". Syngenta File","comments":null,"startOffset":441,"endOffset":448,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78721Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f4eb901c114b519af6a0a545356455cb","type":"CBI_author","value":"Bercz J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":198.15404,"y":663.74},"width":34.28633,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"Report: K-CA 5.8.1/17 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b00ddfd89ed120bb7e4a6d2a183d48bb","type":"CBI_author","value":"Sprague","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":652.22},"width":33.599075,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"of 2,4,6-Trichlorophenol in ","textAfter":"-Dawley Rats. Environmental","comments":null,"startOffset":103,"endOffset":110,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"605065ec60430bde65f139a9d9f1ac26","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (99.8%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":516.35},"width":82.55249,"height":11.017679,"page":503}],"sectionNumber":5217,"textBefore":null,"textAfter":null,"comments":null,"startOffset":87,"endOffset":104,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea4cfe0bfdac19f590567fe3366180a0","type":"published_information","value":"Journal of the American College of Toxicology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":191.2693,"y":617.78},"width":194.75212,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":null,"textAfter":null,"comments":null,"startOffset":388,"endOffset":433,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7384761a4ba0911bb4056167a1bdc073","type":"CBI_author","value":"Bercz","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":346.148,"y":640.7},"width":24.346252,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"Protection Agency. Published: ","textAfter":" JP, Robinson","comments":null,"startOffset":243,"endOffset":248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618711Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8baded9d897b71246560d7459d7513a","type":"CBI_author","value":"Balikova M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Nephrotoxicity","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.17944,"y":716.18},"width":53.141907,"height":11.017679,"page":503}],"sectionNumber":5216,"textBefore":"Wistar rats. (","textAfter":" et al,","comments":null,"startOffset":671,"endOffset":681,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a7ce3d8e9e74c0aa875c9f716c8bd4aa","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Nephrotoxicity","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":276.54755,"y":565.55},"width":36.968292,"height":11.017679,"page":503}],"sectionNumber":5216,"textBefore":"toxicity studies in ","textAfter":"-Dawley rats, for","comments":null,"startOffset":738,"endOffset":745,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c9cd0135cb4831e2b30ac15333f47a3a","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":146.26369,"y":416.37},"width":37.089783,"height":11.017679,"page":503}],"sectionNumber":5218,"textBefore":"Male and female ","textAfter":"-Dawley rats (10/sex/dose)","comments":null,"startOffset":52,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bda47f0fbc754ba46a2674ef61d122a","type":"CBI_author","value":"Parnell","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":629.18},"width":29.296371,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"L, Page NP, ","textAfter":" MJ, Wolfe","comments":null,"startOffset":283,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ca8702fd38ad1fb0a6dd63c31c17692","type":"CBI_author","value":"Robinson M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":389.8923,"y":640.7},"width":52.18451,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"Published: Bercz JP, ","textAfter":", Jones L,","comments":null,"startOffset":253,"endOffset":263,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ca5baa81b71a906a680184a188908cf","type":"CBI_author","value":"Page NP","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":486.88287,"y":640.7},"width":37.344055,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":null,"textAfter":null,"comments":null,"startOffset":274,"endOffset":281,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["NER"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9fce7a6048be82b672a90b4a8f748eb4","type":"CBI_author","value":"Jones","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":447.80975,"y":640.7},"width":23.200897,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"JP, Robinson M, ","textAfter":" L, Page","comments":null,"startOffset":265,"endOffset":270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618712Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c3d40813d8b22e0973b5bf4500148ae9","type":"CBI_author","value":"Wolfe GW","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":182.59413,"y":629.18},"width":45.16263,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"NP, Parnell MJ, ","textAfter":" (1990). Subchronic","comments":null,"startOffset":295,"endOffset":303,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618713Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7dc8bc1d3ca9e5ce2533b5ef424da05c","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Nephrotoxicity","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":452.53687,"y":617.78},"width":37.931763,"height":10.526819,"page":503}],"sectionNumber":5214,"textBefore":"Toxicology, 9(5): 497-506. ","textAfter":" File No.","comments":null,"startOffset":450,"endOffset":458,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618713Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["ea4cfe0bfdac19f590567fe3366180a0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e430b6dbd2fd4fef07b2e7bb033c4447","type":"CBI_address","value":"Charles River Laboratories, Inc., Raleigh, NC","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":208.97,"y":545.99},"width":166.12305,"height":10.0905,"page":504}],"sectionNumber":5220,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618713Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"700d62e8524472a15d04c348a2421a2d","type":"CBI_author","value":"Chow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.027,"y":506.87},"width":22.48294,"height":10.0905,"page":504}],"sectionNumber":5220,"textBefore":"Purina Certified ","textAfter":" 5002 (Ralston-Purina","comments":null,"startOffset":210,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618713Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c55f6adbc05a4f83653eff992ac4ff79","type":"PII","value":"240 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.73,"y":267.09003},"width":14.619995,"height":10.0905,"page":504},{"topLeft":{"x":350.47,"y":267.09003},"width":10.059998,"height":10.0905,"page":504},{"topLeft":{"x":469.18,"y":267.09003},"width":10.059998,"height":10.0905,"page":504}],"sectionNumber":5226,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618713Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787211Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0ed62360535a2daeb7e6fd9bd155d7c4","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":208.97,"y":572.03},"width":30.528992,"height":10.0905,"page":504}],"sectionNumber":5220,"textBefore":null,"textAfter":"-Dawley","comments":null,"startOffset":33,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618714Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ed483d84f183401474ed7a1734c7ead","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":689.78},"width":28.467995,"height":10.018499,"page":504}],"sectionNumber":5219,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618714Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4273746f1e90747b13114efac6b88adf","type":"PII","value":"720 10 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.73,"y":252.21002},"width":14.619995,"height":10.0905,"page":504},{"topLeft":{"x":350.47,"y":252.21002},"width":10.059998,"height":10.0905,"page":504},{"topLeft":{"x":469.18,"y":252.21002},"width":10.059998,"height":10.0905,"page":504}],"sectionNumber":5227,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618714Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787212Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cdee4905086669b96779bb990cff2ed3","type":"hint_only","value":"pathologist","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study design","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":83.94403},"width":49.874084,"height":11.017679,"page":505}],"sectionNumber":5229,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2834,"endOffset":2845,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618714Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8d0b6f4e544e6891435700a7fff99e98","type":"CBI_author","value":"Gross","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":65.424,"y":123.900024},"width":21.916,"height":10.0905,"page":505}],"sectionNumber":5229,"textBefore":"Jejunum Colon Pancreas ","textAfter":" lesions (except","comments":null,"startOffset":2688,"endOffset":2693,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618714Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"593ae4133b25342f500adea7f2db782e","type":"PII","value":"80 240 720","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-38: Clinical chemistry values in rats administered 2,4,6-TCP by gavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.33,"y":169.38},"width":10.059998,"height":10.0905,"page":506},{"topLeft":{"x":384.91,"y":169.38},"width":14.619995,"height":10.0905,"page":506},{"topLeft":{"x":479.14,"y":169.38},"width":14.619995,"height":10.0905,"page":506}],"sectionNumber":5231,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618715Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787213Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8be423e79ba5b68b8c009d7e76c6b41f","type":"PII","value":"80 240 720","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-40: Organ to total body weight ratios for rats administered 2,4,6-TCP by gavage for 90\ndays","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.33,"y":406.05},"width":10.059998,"height":10.0905,"page":507},{"topLeft":{"x":384.91,"y":406.05},"width":14.619995,"height":10.0905,"page":507},{"topLeft":{"x":479.14,"y":406.05},"width":14.619995,"height":10.0905,"page":507}],"sectionNumber":5251,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618715Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787213Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8fe96f2853bac8e15b7d13eebe09f266","type":"PII","value":"80 240 720","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-39: Absolute organ weights for rats administered 2,4,6-TCP by gavage for 90 days","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.33,"y":559.67},"width":10.059998,"height":10.0905,"page":507},{"topLeft":{"x":384.91,"y":559.67},"width":14.619995,"height":10.0905,"page":507},{"topLeft":{"x":479.14,"y":559.67},"width":14.619995,"height":10.0905,"page":507}],"sectionNumber":5241,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618715Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787213Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2ba3392d6463a3969b07ea588765e2c9","type":"PII","value":"(2004) 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.3819,"y":110.22003},"width":36.306976,"height":10.0905,"page":508}],"sectionNumber":5274,"textBefore":"AND CHEMICAL TOXICOLOGY, ","textAfter":"(8), 1323-37","comments":null,"startOffset":215,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618715Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787213Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f92dd6cfd52b826b4e638e43d352c572","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.181,"y":285.45},"width":21.906998,"height":10.0905,"page":508}],"sectionNumber":5270,"textBefore":"mutation assay (","textAfter":")","comments":null,"startOffset":26,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618715Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e71ac367490dd7f03bcae2d084056e22","type":"PII","value":"1323-37","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.67,"y":99.900024},"width":31.059998,"height":10.0905,"page":508}],"sectionNumber":5274,"textBefore":"TOXICOLOGY, (2004) 42(8), ","textAfter":null,"comments":null,"startOffset":229,"endOffset":236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787214Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9e0b1949f3938a0e1095c4d77c2e8053","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.181,"y":358.41},"width":21.900002,"height":10.0905,"page":508}],"sectionNumber":5269,"textBefore":"mutation assay (","textAfter":")","comments":null,"startOffset":26,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"634dbc964179f13842dccc57f47e5b94","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":570.35},"width":35.4971,"height":10.018499,"page":508}],"sectionNumber":5264,"textBefore":null,"textAfter":" scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f69594ee383cb9b31a66f541190cd75f","type":"CBI_author","value":"Strobel","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":375.67,"y":316.52997},"width":27.118011,"height":10.0905,"page":508}],"sectionNumber":5270,"textBefore":null,"textAfter":" K; Grummt","comments":null,"startOffset":255,"endOffset":262,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"436373699a801e42edaa14c576bf1d70","type":"CBI_author","value":"Fujita","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.07797,"y":141.29999},"width":22.114044,"height":10.0905,"page":508}],"sectionNumber":5273,"textBefore":"A; Yamaguchi Y; ","textAfter":" T; Kuroda","comments":null,"startOffset":176,"endOffset":182,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15fb4387bcce1b0045ef9e74ab63ad0b","type":"CBI_author","value":"Oda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.41296,"y":208.14001},"width":16.029999,"height":10.0905,"page":508}],"sectionNumber":5272,"textBefore":"I; Nunoshiba T; ","textAfter":" Y; MIZU","comments":null,"startOffset":238,"endOffset":241,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e78ee08176b62ec329f1cbcd325cb3b8","type":"CBI_author","value":"Grummt T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":415.22504,"y":316.52997},"width":39.123993,"height":10.0905,"page":508}],"sectionNumber":5270,"textBefore":null,"textAfter":null,"comments":null,"startOffset":266,"endOffset":274,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618716Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"71aa30262a8000a2280d48280fb40cd1","type":"CBI_author","value":"Kobayashi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.794,"y":218.58002},"width":39.240967,"height":10.0905,"page":508}],"sectionNumber":5271,"textBefore":"Ono Y; ","textAfter":" U; Somiya","comments":null,"startOffset":171,"endOffset":180,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618717Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"603ededfda81a6c7a55237d156a17ad6","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.181,"y":488.87},"width":21.906998,"height":10.0905,"page":508}],"sectionNumber":5267,"textBefore":"mutation assay (","textAfter":")","comments":null,"startOffset":26,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618717Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"46dfe0e563c8bcaf1d665d9c2cb621f0","type":"CBI_author","value":"Endo","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":420.86798,"y":130.97998},"width":20.016968,"height":10.0905,"page":508}],"sectionNumber":5273,"textBefore":"T; Kuroda K; ","textAfter":" G; FOOD","comments":null,"startOffset":196,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618717Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a448996796d1897c2a621ef821c56060","type":"PII","value":"565-71","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.0609,"y":358.41},"width":26.653076,"height":10.0905,"page":508}],"sectionNumber":5269,"textBefore":"TOXICOL. (1977), 18(5), ","textAfter":".","comments":null,"startOffset":236,"endOffset":242,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618717Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787214Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"230778eb93f4777e5b86ebc61729df77","type":"CBI_author","value":"Ono Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.67,"y":218.58002},"width":25.353973,"height":10.0905,"page":508}],"sectionNumber":5271,"textBefore":null,"textAfter":"; Kobayashi U;","comments":null,"startOffset":164,"endOffset":169,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618717Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a9887507fb8b81491315530d725d486b","type":"CBI_author","value":"Nunoshiba T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.87,"y":208.14001},"width":47.853943,"height":10.0905,"page":508}],"sectionNumber":5271,"textBefore":null,"textAfter":null,"comments":null,"startOffset":194,"endOffset":205,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618717Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"101c58127605eff0127386425a9605a2","type":"CBI_author","value":"Zeiger","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.25302,"y":504.35},"width":24.400024,"height":10.0905,"page":508}],"sectionNumber":5267,"textBefore":"K; Speck W; ","textAfter":" E; ENVIRON.","comments":null,"startOffset":204,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce87b705e02164795c690f880b38cbfe","type":"CBI_author","value":"Haworth","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.99,"y":514.67},"width":32.46396,"height":10.0905,"page":508}],"sectionNumber":5267,"textBefore":null,"textAfter":" S; Lawlor","comments":null,"startOffset":160,"endOffset":167,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2e141dc6ef1a788d2fa6eb6b5366c09b","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":89.181,"y":426.23},"width":21.906998,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":"mutation assay (","textAfter":")","comments":null,"startOffset":26,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21032f12c369f8830d842733f1577b38","type":"CBI_author","value":"Rasanen","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.59,"y":379.17},"width":31.419983,"height":10.0905,"page":508}],"sectionNumber":5269,"textBefore":null,"textAfter":" L; Hattula","comments":null,"startOffset":167,"endOffset":174,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9311c92ca5b3498306d2d95f2ff4685e","type":"CBI_author","value":"MIZU KANKYO GAKKAISHI","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":356.47,"y":197.82},"width":117.36981,"height":10.0905,"page":508}],"sectionNumber":5272,"textBefore":null,"textAfter":null,"comments":null,"startOffset":245,"endOffset":266,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8f42eb82015a22cbfba5b2fb4b3b8ac3","type":"CBI_author","value":"Mortelmans","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":434.87198,"y":514.67},"width":44.551056,"height":10.0905,"page":508}],"sectionNumber":5267,"textBefore":"S; Lawlor T; ","textAfter":" K; Speck","comments":null,"startOffset":181,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"74f6d9955b5d749192735be0fbb24d9d","type":"CBI_author","value":"Speck","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":385.858,"y":504.35},"width":23.004974,"height":10.0905,"page":508}],"sectionNumber":5267,"textBefore":"T; Mortelmans K; ","textAfter":" W; Zeiger","comments":null,"startOffset":195,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618718Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"79183fdd859afcb38ced5f876e8dfac3","type":"CBI_author","value":"Somiya I","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.589,"y":218.58002},"width":33.598053,"height":10.0905,"page":508}],"sectionNumber":5272,"textBefore":null,"textAfter":null,"comments":null,"startOffset":215,"endOffset":223,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618719Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7be54b0cb411396ea3f757f35a1d8b52","type":"CBI_author","value":"Onodera","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":354.55,"y":462.47},"width":32.09497,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":null,"textAfter":" S; Yoshimatsu","comments":null,"startOffset":120,"endOffset":127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618719Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9c0ac50df5a7b4a84dd580ee4912b8bf","type":"PII","value":"143-56","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.83,"y":275.13},"width":26.49704,"height":10.0905,"page":508}],"sectionNumber":5270,"textBefore":"CHEMISTRY, (1987) 14(1-2), ","textAfter":".","comments":null,"startOffset":335,"endOffset":341,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618719Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787215Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9d6f1c7a9fb4d3a2f71b38d0f8fa61d","type":"CBI_author","value":"Bercz J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":445.40945,"y":664.1},"width":33.601166,"height":11.017679,"page":508}],"sectionNumber":5308,"textBefore":"per day. (","textAfter":" et al,","comments":null,"startOffset":5366,"endOffset":5373,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618719Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a30ad1279573178c71d5f72261fdf31b","type":"CBI_author","value":"Yamaguchi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":390.052,"y":141.29999},"width":42.471954,"height":10.0905,"page":508}],"sectionNumber":5273,"textBefore":"Ozaki A; ","textAfter":" Y; Fujita","comments":null,"startOffset":163,"endOffset":172,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618719Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7a537632385e73d3fd9d5062b35e4c0","type":"CBI_author","value":"Lawlor T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.61298,"y":514.67},"width":34.569977,"height":10.0905,"page":508}],"sectionNumber":5267,"textBefore":"Haworth S; ","textAfter":"; Mortelmans K;","comments":null,"startOffset":171,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618719Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5d94182959af3567a2b3c94904035519","type":"CBI_author","value":"Uchida","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.778,"y":452.15},"width":27.063995,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":"K; Saitoh H; ","textAfter":" A; JAPANESE","comments":null,"startOffset":155,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61872Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28eb7ecf838b60568fd3728ed1f66df7","type":"CBI_author","value":"Hattula","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.52,"y":379.17},"width":27.52304,"height":10.0905,"page":508}],"sectionNumber":5269,"textBefore":"Rasanen L; ","textAfter":" M; BULL.","comments":null,"startOffset":178,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61872Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"45a13b0256cc06720f659951b86d1c25","type":"PII","value":"289-299","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":424.81897,"y":410.73},"width":31.132019,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":"HEALTH, (1998) 44(4), ","textAfter":".","comments":null,"startOffset":236,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61872Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787216Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1133759c7ed6fb38cb916150ac667f73","type":"PII","value":"(1987) 14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":416.19397,"y":285.45},"width":36.306976,"height":10.0905,"page":508}],"sectionNumber":5270,"textBefore":"AND ENVIRONMENTAL CHEMISTRY, ","textAfter":"(1-2), 143-56.","comments":null,"startOffset":319,"endOffset":328,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61872Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787216Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe00e9f1a8d15e8159d3cd7b7a0932d5","type":"PII","value":"871-877","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.053,"y":187.5},"width":31.138,"height":10.0905,"page":508}],"sectionNumber":5272,"textBefore":"GAKKAISHI, (1996), 19(11), ","textAfter":".","comments":null,"startOffset":284,"endOffset":291,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61872Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787216Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a2838c772514ff3aeaee32063b636a9c","type":"CBI_author","value":"Ozaki A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.15,"y":141.29999},"width":31.248993,"height":10.0905,"page":508}],"sectionNumber":5273,"textBefore":null,"textAfter":"; Yamaguchi Y;","comments":null,"startOffset":154,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"76677b96e0187bb9637584f61e1c35aa","type":"PII","value":"(1998) 44","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.59,"y":410.73},"width":36.306976,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":"AND ENVIRONMENTAL HEALTH, ","textAfter":"(4), 289-299.","comments":null,"startOffset":222,"endOffset":231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787216Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8b6df4dd0a147ec3b7aee65b7ded4dbc","type":"CBI_author","value":"Yoshimatsu K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":397.57898,"y":462.47},"width":52.588043,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":null,"textAfter":null,"comments":null,"startOffset":131,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aa76477b70e59e344ee4b55a27952cf0","type":"CBI_author","value":"Kuroda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":380.35,"y":130.97998},"width":28.13498,"height":10.0905,"page":508}],"sectionNumber":5274,"textBefore":"Y; Fujita T; ","textAfter":" K; Endo","comments":null,"startOffset":167,"endOffset":173,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"60bbd226f2ca68a437b3f8835f3bb37e","type":"CBI_author","value":"Saitoh H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.93704,"y":462.47},"width":24.07602,"height":10.0905,"page":508},{"topLeft":{"x":391.51,"y":452.15},"width":7.497986,"height":10.0905,"page":508}],"sectionNumber":5268,"textBefore":null,"textAfter":null,"comments":null,"startOffset":145,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8df3100b6a49ebf5087d02ae45b9f310","type":"CBI_author","value":"MUTATION RESEARCH","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":366.07,"y":217.02002},"width":98.06488,"height":10.0905,"page":509}],"sectionNumber":5285,"textBefore":null,"textAfter":null,"comments":null,"startOffset":507,"endOffset":524,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e8e4129f1681640477e5be59aa4acf72","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.18607,"y":237.65997},"width":35.865967,"height":10.0905,"page":509}],"sectionNumber":5285,"textBefore":"Armstrong M.J; ","textAfter":" S.M; Ashby","comments":null,"startOffset":484,"endOffset":492,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3237ed925d1b096bc437b9022bdb0971","type":"CBI_author","value":"Mason","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":416.79102,"y":611.9},"width":25.40802,"height":10.0905,"page":509}],"sectionNumber":5279,"textBefore":"Valencia R; ","textAfter":" J.M; Woodruff","comments":null,"startOffset":147,"endOffset":152,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"711d427c7a89243265d100d723e4f168","type":"CBI_author","value":"McBride","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.472,"y":353.01},"width":33.17801,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"P; Edwards I; ","textAfter":" D; Riach","comments":null,"startOffset":204,"endOffset":211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618721Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70b3f66f920b2dd32d5435d175bd0f55","type":"PII","value":"325-48","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.83,"y":570.59},"width":26.49704,"height":10.0905,"page":509}],"sectionNumber":5280,"textBefore":"MUTAGENESIS, (1985), 7(3), ","textAfter":null,"comments":null,"startOffset":175,"endOffset":181,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787217Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"42c95d8899c3dc5b33e85fffa09b041a","type":"CBI_author","value":"Fahrig","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.99,"y":713.78},"width":24.544006,"height":10.0905,"page":509}],"sectionNumber":5278,"textBefore":null,"textAfter":" R; Nilsson","comments":null,"startOffset":268,"endOffset":274,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65db7ee709b18fe27aef3b7909070fdf","type":"PII","value":"101-108","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.04398,"y":206.70001},"width":31.147034,"height":10.0905,"page":509}],"sectionNumber":5285,"textBefore":"RESEARCH, (1993), 303(3), ","textAfter":".","comments":null,"startOffset":542,"endOffset":549,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787217Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7b3d924eff0ba0b49d7435568d0be133","type":"CBI_author","value":"Ashby J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.91,"y":227.34003},"width":30.151001,"height":10.0905,"page":509}],"sectionNumber":5285,"textBefore":"M.J; Galloway S.M; ","textAfter":"; MUTATION RESEARCH,","comments":null,"startOffset":498,"endOffset":505,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d6ffe75a58ecebd2a6e30f0ba9fc8c92","type":"CBI_author","value":"Rappe C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.72403,"y":713.78},"width":32.30194,"height":10.0905,"page":509}],"sectionNumber":5278,"textBefore":null,"textAfter":null,"comments":null,"startOffset":291,"endOffset":298,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0bc0de78c249ae691e6ce702daacc52d","type":"CBI_author","value":"Hattula","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":367.99,"y":521.75},"width":27.52304,"height":10.0905,"page":509}],"sectionNumber":5281,"textBefore":null,"textAfter":" M.L; Knuutinen","comments":null,"startOffset":184,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["22c645b0a4d556d18907b39c966f7c1b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"22fdc4a59a71f907b37ea36c1286cb67","type":"CBI_author","value":"Woodruff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":362.23,"y":601.58},"width":36.48697,"height":10.0905,"page":509}],"sectionNumber":5280,"textBefore":"R; Mason J.M; ","textAfter":" R.C; Zimmering","comments":null,"startOffset":107,"endOffset":115,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f5a355e82f0d42aeaab4e670ad99ccf","type":"PII","value":"325-38","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.95,"y":662.06},"width":26.49701,"height":10.0905,"page":509}],"sectionNumber":5277,"textBefore":"Pharmacol., Environ. Toxicol., ","textAfter":".","comments":null,"startOffset":413,"endOffset":419,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787218Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2e5441e23c31b9bd0290b06812013272","type":"CBI_author","value":"Zimmering S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.93,"y":601.58},"width":48.682037,"height":10.0905,"page":509}],"sectionNumber":5279,"textBefore":null,"textAfter":null,"comments":null,"startOffset":172,"endOffset":183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618722Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fc4cc2679e8e1d808133435787fdacb9","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":754.58},"width":35.4971,"height":10.018499,"page":509}],"sectionNumber":5276,"textBefore":null,"textAfter":" scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7512fe4b9cf7a9f074a9316198050ca4","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":375.43,"y":463.67},"width":29.007996,"height":10.0905,"page":509}],"sectionNumber":5282,"textBefore":null,"textAfter":" K; Jansson","comments":null,"startOffset":123,"endOffset":130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4d114308f1b04811cc146aba7d00acb","type":"CBI_author","value":"Valencia","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":371.71,"y":611.9},"width":33.04001,"height":10.0905,"page":509}],"sectionNumber":5279,"textBefore":null,"textAfter":" R; Mason","comments":null,"startOffset":135,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d95427794a4ac621d5ab140c601e63ea","type":"CBI_author","value":"Brown A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":427.579,"y":363.33},"width":34.23694,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"McGregor D.B; ","textAfter":"; Cattanach P;","comments":null,"startOffset":171,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ef0a4d266eafa5aed764c7cb7e84a487","type":"CBI_author","value":"Riach","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":380.21802,"y":342.69},"width":21.943024,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"I; McBride D; ","textAfter":" C; Caspary","comments":null,"startOffset":215,"endOffset":220,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"54e222b39b03eaac1459c62c16299970","type":"CBI_author","value":"Knuutinen J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":417.26508,"y":521.75},"width":44.785004,"height":10.0905,"page":509}],"sectionNumber":5281,"textBefore":null,"textAfter":null,"comments":null,"startOffset":197,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["NER"],"reference":["22c645b0a4d556d18907b39c966f7c1b"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"814315d886907880309fccbb154e5efe","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":375.43,"y":408.45},"width":29.007996,"height":10.0905,"page":509}],"sectionNumber":5283,"textBefore":null,"textAfter":" K; Jansson","comments":null,"startOffset":123,"endOffset":130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21759c5ecf48ef9066037898e37a0c11","type":"CBI_author","value":"ENVIRONMENTAL MUTAGENESIS","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.87,"y":591.26},"width":78.97589,"height":10.0905,"page":509},{"topLeft":{"x":358.87,"y":580.91},"width":64.42291,"height":10.0905,"page":509}],"sectionNumber":5279,"textBefore":null,"textAfter":null,"comments":null,"startOffset":185,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4e01dffd94a9cc42040536acc453191d","type":"CBI_author","value":"Nilsson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":392.557,"y":713.78},"width":28.423035,"height":10.0905,"page":509}],"sectionNumber":5278,"textBefore":"Fahrig R; ","textAfter":" C.A; Rappe","comments":null,"startOffset":278,"endOffset":285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d3f481c1c3284afd02a1890e60d636d6","type":"PII","value":"175-179","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.04398,"y":387.69},"width":31.147034,"height":10.0905,"page":509}],"sectionNumber":5283,"textBefore":"RESEARCH, (1992), 280(3), ","textAfter":".","comments":null,"startOffset":180,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618723Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787219Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1eabb179328a834fb41fdda23d995c1b","type":"CBI_author","value":"Armstrong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":358.39,"y":237.65997},"width":40.041992,"height":10.0905,"page":509}],"sectionNumber":5285,"textBefore":null,"textAfter":" M.J; Galloway","comments":null,"startOffset":469,"endOffset":478,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"38795d3f990c7819ce909cb9ac0ae3c1","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.02798,"y":463.67},"width":28.891022,"height":10.0905,"page":509}],"sectionNumber":5282,"textBefore":"Jansson K; ","textAfter":" V; MUTATION","comments":null,"startOffset":134,"endOffset":141,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"428c517f9d3c7aca6b8b8a4734f7794c","type":"CBI_author","value":"MUTATION RESEARCH","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":366.07,"y":398.01},"width":98.079895,"height":10.0905,"page":509}],"sectionNumber":5283,"textBefore":null,"textAfter":null,"comments":null,"startOffset":145,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f72b3eb07237f7a66c5528f02c0d5743","type":"PII","value":"1617-1625","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":395.11,"y":501.11},"width":40.044983,"height":10.0905,"page":509}],"sectionNumber":5281,"textBefore":"CHEMOSPHERE (1985), 14(10), ","textAfter":".","comments":null,"startOffset":238,"endOffset":247,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787219Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"180ef2e31bc3beba38bd6861dae78d8f","type":"CBI_author","value":"McGregor","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":368.35,"y":363.33},"width":38.412994,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":null,"textAfter":" D.B; Brown","comments":null,"startOffset":157,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69877c398ce8d67861b8e5234f2dd475","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.02798,"y":408.45},"width":28.891022,"height":10.0905,"page":509}],"sectionNumber":5283,"textBefore":"Jansson K; ","textAfter":" V; MUTATION","comments":null,"startOffset":134,"endOffset":141,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"179e6f76a94c3eadbed15b5ea1e3f722","type":"CBI_author","value":"Caspary","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.27405,"y":342.69},"width":30.447998,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"D; Riach C; ","textAfter":" W.J; ENVIRONMENTAL","comments":null,"startOffset":224,"endOffset":231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"278666f8ea4bbc0966227c5232574621","type":"CBI_author","value":"Cattanach","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.03,"y":353.01},"width":36.92798,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"D.B; Brown A; ","textAfter":" P; Edwards","comments":null,"startOffset":180,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c1d166da5c14b2330b594a95aa887c6","type":"PII","value":"165-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.92902,"y":442.91},"width":30.981995,"height":10.0905,"page":509}],"sectionNumber":5282,"textBefore":"RESEARCH, (1986), 171(2-3), ","textAfter":".","comments":null,"startOffset":182,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618724Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787219Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"76e5d8d88caad5e196ab12c4343ad90e","type":"CBI_author","value":"Edwards","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.108,"y":353.01},"width":32.32895,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"A; Cattanach P; ","textAfter":" I; McBride","comments":null,"startOffset":193,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eff02885fb0ba9c25c1357a87c78831e","type":"PII","value":"85-154","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.15802,"y":311.61},"width":26.592987,"height":10.0905,"page":509}],"sectionNumber":5284,"textBefore":"MUTAGENESIS, (1988), 12(1), ","textAfter":".","comments":null,"startOffset":293,"endOffset":299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787219Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d8b9971d8becf7a4536b2fa8738c1d8","type":"CBI_author","value":"MUTATION RESEARCH","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":366.07,"y":453.23},"width":98.06488,"height":10.0905,"page":509}],"sectionNumber":5282,"textBefore":null,"textAfter":null,"comments":null,"startOffset":145,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"22c645b0a4d556d18907b39c966f7c1b","type":"published_information","value":"CHEMOSPHERE","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":354.31,"y":511.43},"width":67.07794,"height":10.0905,"page":509}],"sectionNumber":5281,"textBefore":null,"textAfter":null,"comments":null,"startOffset":210,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82ac0dfea528cf089a338ba8996b4a23","type":"CBI_author","value":"Matsuoka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":356.95,"y":389.37},"width":36.52304,"height":10.0905,"page":510}],"sectionNumber":5291,"textBefore":null,"textAfter":" A; Hayashi","comments":null,"startOffset":166,"endOffset":174,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e74dae28ced095871b95be57307407fb","type":"CBI_author","value":"Ozaki A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.15,"y":339.81},"width":31.248993,"height":10.0905,"page":510}],"sectionNumber":5292,"textBefore":null,"textAfter":"; Yamaguchi Y;","comments":null,"startOffset":115,"endOffset":122,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3cb27744f3136502d5097080856801cb","type":"CBI_author","value":"Bloom","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":394.35098,"y":559.67},"width":25.506989,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"B; Cannon C; ","textAfter":" A.D; Nakamura","comments":null,"startOffset":259,"endOffset":264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d14b3358e56b0f1b160b7d072990f60","type":"published_information","value":"ISSN","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":411.952,"y":434.27},"width":20.557007,"height":10.0905,"page":510}],"sectionNumber":5290,"textBefore":null,"textAfter":null,"comments":null,"startOffset":254,"endOffset":258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3da0cf67ddbd68dad7f3632d3837f78c","type":"PII","value":"(1992) 280","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.75,"y":167.82},"width":40.743988,"height":10.0905,"page":510}],"sectionNumber":5295,"textBefore":"V; MUTATION RESEARCH, ","textAfter":"(3), 175-9","comments":null,"startOffset":223,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78722Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9b4de902db7260ae3ece2919ef7a2362","type":"CBI_author","value":"Yamaguchi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":390.052,"y":339.81},"width":42.471954,"height":10.0905,"page":510}],"sectionNumber":5292,"textBefore":"Ozaki A; ","textAfter":" Y; Fujita","comments":null,"startOffset":124,"endOffset":133,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"86712f3c2dee30f16f1897927319ef5e","type":"CBI_author","value":"Sofuni","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.4331,"y":389.37},"width":24.96698,"height":10.0905,"page":510}],"sectionNumber":5291,"textBefore":"A; Hayashi M; ","textAfter":" T; KANKYO","comments":null,"startOffset":189,"endOffset":195,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"16667940de18f22767cca8cf1261312b","type":"CBI_author","value":"Jansson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":416.908,"y":465.35},"width":28.891022,"height":10.0905,"page":510}],"sectionNumber":5290,"textBefore":"Jansson K; ","textAfter":" V; Mutation","comments":null,"startOffset":166,"endOffset":173,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["54b578ae123105ddd04939fff1068e5d","1d14b3358e56b0f1b160b7d072990f60"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d8982f28cb18b7dc7c7cd9b515a58f6","type":"CBI_author","value":"Ahmed","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":369.76904,"y":549.23},"width":27.333954,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"A.D; Nakamura F; ","textAfter":" M; Duk","comments":null,"startOffset":282,"endOffset":287,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"26023dfa87e24029e0747d9cf4e20df1","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":416.908,"y":188.46002},"width":28.891022,"height":10.0905,"page":510}],"sectionNumber":5295,"textBefore":"Jansson K; ","textAfter":" V; MUTATION","comments":null,"startOffset":193,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a496c7ead638f068aaa5a7316f0d56a","type":"CBI_author","value":"Armstrong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":358.39,"y":274.52997},"width":40.041992,"height":10.0905,"page":510}],"sectionNumber":5293,"textBefore":null,"textAfter":" M.J; Galloway","comments":null,"startOffset":152,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c1ce3387c0b6226b622419a1ac6c345","type":"CBI_author","value":"Endo","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":420.86798,"y":329.49},"width":20.016968,"height":10.0905,"page":510}],"sectionNumber":5292,"textBefore":"T; Kuroda K; ","textAfter":" G; FOOD","comments":null,"startOffset":157,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"54b578ae123105ddd04939fff1068e5d","type":"published_information","value":"ISSN","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":387.19,"y":423.95},"width":20.557007,"height":10.0905,"page":510}],"sectionNumber":5290,"textBefore":null,"textAfter":null,"comments":null,"startOffset":273,"endOffset":277,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fcf238781aaa83b966034be804c1fe6a","type":"PII","value":"1323-1337","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":395.11,"y":298.40997},"width":40.044983,"height":10.0905,"page":510}],"sectionNumber":5292,"textBefore":"TOXICOLOGY, (2004), 42(8), ","textAfter":".","comments":null,"startOffset":210,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618726Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787221Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"443893af6cdb035bca6e2c7530c43295","type":"PII","value":"0027-5107","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.51703,"y":423.95},"width":40.07794,"height":10.0905,"page":510}],"sectionNumber":5290,"textBefore":"ISSN: 0027-5107. L-ISSN: ","textAfter":".","comments":null,"startOffset":279,"endOffset":288,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787221Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"091583903e5725f7960b95a26aac93c1","type":"CBI_author","value":"MUTATION RESEARCH","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":366.07,"y":178.14001},"width":98.06488,"height":10.0905,"page":510}],"sectionNumber":5295,"textBefore":null,"textAfter":null,"comments":null,"startOffset":204,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12fd9677e65e1e11b6e5d278539df15d","type":"PII","value":"159-165","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":424.858,"y":358.29},"width":31.092987,"height":10.0905,"page":510}],"sectionNumber":5291,"textBefore":"KENKYU, (1998) 20(3), ","textAfter":".","comments":null,"startOffset":237,"endOffset":244,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787221Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f017d0c9c90b449906b44ebeac9eb74c","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":358.39,"y":580.31},"width":35.955963,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":null,"textAfter":" S.M; Armstrong","comments":null,"startOffset":191,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f812966f2114568bc43665501755cb8","type":"CBI_author","value":"Cannon","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":353.23,"y":559.67},"width":29.007965,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"S; Brown B; ","textAfter":" C; Bloom","comments":null,"startOffset":249,"endOffset":255,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3144f3220175817a61b12a26f2cba306","type":"CBI_author","value":"Armstrong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":415.54904,"y":580.31},"width":40.041992,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"Galloway S.M; ","textAfter":" M.J; Reuben","comments":null,"startOffset":205,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3fe02372f4eb5391cd448130c761ed2","type":"CBI_author","value":"Kuroda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":380.35,"y":329.49},"width":28.13498,"height":10.0905,"page":510}],"sectionNumber":5292,"textBefore":"Y; Fujita T; ","textAfter":" K; Endo","comments":null,"startOffset":147,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"94b003a400b3584d608220de3b73aa17","type":"CBI_author","value":"Duk S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.24103,"y":549.23},"width":23.743011,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":null,"textAfter":null,"comments":null,"startOffset":291,"endOffset":296,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"794e0990825be08dffc4e92ab529be94","type":"CBI_author","value":"Resnik M.A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":420.13004,"y":538.91},"width":45.01001,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":null,"textAfter":null,"comments":null,"startOffset":321,"endOffset":331,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618727Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cba0a84be21331cc66258243916b853a","type":"CBI_author","value":"Rimpo J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.68207,"y":549.23},"width":31.23999,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":null,"textAfter":null,"comments":null,"startOffset":298,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b66f7971372b74acbdbdbbb27492ae62","type":"CBI_author","value":"Nakamura","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.86298,"y":559.67},"width":38.449005,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"C; Bloom A.D; ","textAfter":" F; Ahmed","comments":null,"startOffset":270,"endOffset":278,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b757aa1f8d143afad98d2c73d6c4143","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":364.87,"y":538.91},"width":34.516052,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"S; Rimpo J; ","textAfter":" B.H; Resnik","comments":null,"startOffset":307,"endOffset":315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad49f1ae6953d34e4d804656df08e690","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":375.31,"y":188.46002},"width":29.007996,"height":10.0905,"page":510}],"sectionNumber":5294,"textBefore":null,"textAfter":" K; Jansson","comments":null,"startOffset":209,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f901e482e92d694c090f6870a8c1f9b8","type":"CBI_author","value":"Brown","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.57697,"y":569.99},"width":25.416962,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"C; Colman S; ","textAfter":" B; Cannon","comments":null,"startOffset":240,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0683f3bf846a02d4b2678671fc6994ad","type":"CBI_author","value":"Fujita","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":445.07797,"y":339.81},"width":22.114044,"height":10.0905,"page":510}],"sectionNumber":5292,"textBefore":"A; Yamaguchi Y; ","textAfter":" T; Kuroda","comments":null,"startOffset":137,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"332f9352c851df7cee8abe7a66f21b68","type":"CBI_author","value":"Colman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.06793,"y":569.99},"width":29.368011,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"M.J; Reuben C; ","textAfter":" S; Brown","comments":null,"startOffset":230,"endOffset":236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d643d8c04ba5cc79525ed489d99da2a","type":"CBI_author","value":"Ashby J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.91,"y":264.21002},"width":30.151001,"height":10.0905,"page":510}],"sectionNumber":5293,"textBefore":"M.J; Galloway S.M; ","textAfter":"; MUTATION RESEARCH,","comments":null,"startOffset":181,"endOffset":188,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69af741235318da150c7143ad5d28a80","type":"PII","value":"101-108","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.04398,"y":243.41998},"width":31.147034,"height":10.0905,"page":510}],"sectionNumber":5293,"textBefore":"RESEARCH, (1993), 303(3), ","textAfter":".","comments":null,"startOffset":225,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618728Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787222Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6cdd1324be33649cdb59c996ef0b8b95","type":"PII","value":"(1998) 20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.59,"y":358.29},"width":36.306976,"height":10.0905,"page":510}],"sectionNumber":5291,"textBefore":"KANKYO HEN'IGEN KENKYU, ","textAfter":"(3), 159-165.","comments":null,"startOffset":223,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787223Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"55e1408bc41573c6f97a6ef024d08aac","type":"PII","value":"0027-5107","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":436.16202,"y":434.27},"width":40.06598,"height":10.0905,"page":510}],"sectionNumber":5290,"textBefore":"code: 0400763. ISSN: ","textAfter":". L-ISSN: 0027-5107.","comments":null,"startOffset":260,"endOffset":269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787223Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6b8fe31c623b920f57a907fcc1537c61","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":754.58},"width":35.4971,"height":10.018499,"page":510}],"sectionNumber":5287,"textBefore":null,"textAfter":" scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db2f12b65343760c0c5dc53d5c489e71","type":"CBI_author","value":"MUTATION RESEARCH","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":366.07,"y":253.77002},"width":98.06488,"height":10.0905,"page":510}],"sectionNumber":5293,"textBefore":null,"textAfter":null,"comments":null,"startOffset":190,"endOffset":207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5691b5a97e9ce80670db8b9261ae90e8","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.18607,"y":274.52997},"width":35.865967,"height":10.0905,"page":510}],"sectionNumber":5293,"textBefore":"Armstrong M.J; ","textAfter":" S.M; Ashby","comments":null,"startOffset":167,"endOffset":175,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"706403b10c630aed3def08d0e4a0de30","type":"CBI_author","value":"Hayashi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.85605,"y":389.37},"width":30.475006,"height":10.0905,"page":510}],"sectionNumber":5291,"textBefore":"Matsuoka A; ","textAfter":" M; Sofuni","comments":null,"startOffset":178,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da5723d5a0ade8c288a9c6c67238cb30","type":"CBI_author","value":"Reuben","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.55,"y":569.99},"width":28.530945,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"S.M; Armstrong M.J; ","textAfter":" C; Colman","comments":null,"startOffset":220,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c23fbcdbe90b132ee1097de090433f76","type":"CBI_author","value":"Jansson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":375.31,"y":465.35},"width":29.007996,"height":10.0905,"page":510}],"sectionNumber":5290,"textBefore":null,"textAfter":" K; Jansson","comments":null,"startOffset":155,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["54b578ae123105ddd04939fff1068e5d","1d14b3358e56b0f1b160b7d072990f60"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a27a0606094f7ebc467f6bcd2ebd866e","type":"CBI_author","value":"Zeiger","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.02798,"y":528.59},"width":24.400024,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"M.A; Anderson B; ","textAfter":" E; ENVIRONMENTAL","comments":null,"startOffset":345,"endOffset":351,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618729Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8d754bfd62a25f1c4a17c6ffe9d288c6","type":"CBI_author","value":"KANKYO HEN'IGEN KENKYU","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":353.11,"y":368.73},"width":124.11075,"height":10.0905,"page":510}],"sectionNumber":5291,"textBefore":null,"textAfter":null,"comments":null,"startOffset":199,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9f0049b0210deb1bab7bf8b7ded966bf","type":"CBI_author","value":"Valcovic","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":377.884,"y":96.064026},"width":36.975586,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"E; Sheridan W; ","textAfter":" L; (1981)","comments":null,"startOffset":5874,"endOffset":5882,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d645eed65139e2fc662c7d0d0e85158c","type":"CBI_author","value":"Murata","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":439.309,"y":418.77},"width":27.037018,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":"A; Inoue Y; ","textAfter":" T; Uno","comments":null,"startOffset":185,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"23a4cdf6096aeb82c79b53835dfabc77","type":"CBI_author","value":"Witte","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":432.83505,"y":715.58},"width":20.926056,"height":10.0905,"page":511}],"sectionNumber":5298,"textBefore":"U; Blum K; ","textAfter":" I; CHEMICO-BIOLOGICAL","comments":null,"startOffset":114,"endOffset":119,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"39618c0a3cbbdece1fc009647a57e9d0","type":"CBI_author","value":"Zhao","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":439.96304,"y":283.28998},"width":19.41397,"height":10.0905,"page":511}],"sectionNumber":5304,"textBefore":"H; Hu P; ","textAfter":" Q; ENVIRONMENTAL","comments":null,"startOffset":157,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6083cef7a0fe835631fa9bd5bd87de1f","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":167.156,"y":584.87},"width":30.537994,"height":10.0905,"page":511}],"sectionNumber":5301,"textBefore":"Female ","textAfter":"-Dawley rats Dosed","comments":null,"startOffset":30,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f9b2bc4ccb7c2a6a31bac8d6867ac00","type":"CBI_author","value":"Tsuda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.26505,"y":340.65},"width":22.977997,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":"A; Ishida K; ","textAfter":" S; CRITICAL","comments":null,"startOffset":356,"endOffset":361,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3946707a0e31f0e8c424934a8115a36f","type":"CBI_author","value":"Sugiyama","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.87,"y":418.77},"width":36.883026,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":"M; Takasawa H; ","textAfter":" A; Inoue","comments":null,"startOffset":164,"endOffset":172,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae46b67544580537ae62e613d5376a7c","type":"CBI_author","value":"Izumiyama F","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":357.31,"y":350.97},"width":48.55606,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":"Y.F; Sekihashi K; ","textAfter":"; Nishidate E;","comments":null,"startOffset":312,"endOffset":323,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61873Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c0ffd74a388aa199635c01fc39e58ddb","type":"CBI_author","value":"Sasaki","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":74.064,"y":61.599976},"width":27.04541,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"86; 355-379. 17 ","textAfter":" et al.,","comments":null,"startOffset":6045,"endOffset":6051,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e74f1aa9be03d23b7171b671bac1104","type":"CBI_author","value":"Sasaki Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.51,"y":361.41},"width":33.157043,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":null,"textAfter":".F; Sekihashi K;","comments":null,"startOffset":287,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2fcf6945b41ac79e0fdf37b79e901b01","type":"CBI_author","value":"Kitchin K.T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":371.35,"y":533.15},"width":44.623016,"height":10.0905,"page":511}],"sectionNumber":5301,"textBefore":null,"textAfter":"; Brown J.L;","comments":null,"startOffset":322,"endOffset":333,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c5f76eb1ec1fd0bab9ffb0fc746a3a2","type":"CBI_author","value":"Sheridan","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":323.82108,"y":96.064026},"width":36.417786,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"Von Halle E; ","textAfter":" W; Valcovic","comments":null,"startOffset":5862,"endOffset":5870,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"caddc2eeee47d9634bef5fac291de03c","type":"CBI_author","value":"Inoue Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.26202,"y":418.77},"width":30.384949,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":"H; Sugiyama A; ","textAfter":"; Murata T;","comments":null,"startOffset":176,"endOffset":183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"46a4d0b5f0ff59b1eb3fdebb91fa2d13","type":"CBI_author","value":"Juhl","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.87,"y":715.58},"width":16.084015,"height":10.0905,"page":511}],"sectionNumber":5298,"textBefore":null,"textAfter":" U; Blum","comments":null,"startOffset":98,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5bf8466e70ab4f92a0930686c40f6a0","type":"PII","value":"333-344","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.67,"y":684.62},"width":31.050995,"height":10.0905,"page":511}],"sectionNumber":5298,"textBefore":"(1989), 69 (4), ","textAfter":".","comments":null,"startOffset":172,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787225Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5177bd65ba8a68b4e2035e5950133329","type":"CBI_author","value":"CHEMICO-BIOLOGICAL INTERACTIONS","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":366.07,"y":705.26},"width":100.4559,"height":10.0905,"page":511},{"topLeft":{"x":354.55,"y":694.94},"width":66.339905,"height":10.0905,"page":511}],"sectionNumber":5298,"textBefore":null,"textAfter":null,"comments":null,"startOffset":123,"endOffset":154,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618731Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"84b7546907849aa19b44519772de56b9","type":"PII","value":"(1988) 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":410.67398,"y":502.07},"width":36.306976,"height":10.0905,"page":511}],"sectionNumber":5301,"textBefore":"AND ENVIRONMENTAL CHEMISTRY, ","textAfter":"(3), 165- 172.","comments":null,"startOffset":389,"endOffset":398,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787225Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d2caffca19b3e48b069ea8878a396d6","type":"CBI_author","value":"Russell L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":162.50883,"y":96.064026},"width":43.051132,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"of the study. ","textAfter":".B; Selby P.B;","comments":null,"startOffset":5825,"endOffset":5834,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cb0fe03efcc821dd516e354558f083b1","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":494.37628,"y":84.54401},"width":37.64276,"height":10.526819,"page":511},{"topLeft":{"x":64.104,"y":73.119995},"width":37.513367,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":null,"textAfter":null,"comments":null,"startOffset":6010,"endOffset":6027,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ddbbde30f4480670349f0cd85180046c","type":"CBI_author","value":"Brown J.L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.67105,"y":533.15},"width":38.988953,"height":10.0905,"page":511}],"sectionNumber":5301,"textBefore":"Kitchin K.T; ","textAfter":"; TOXICOLOGICAL AND","comments":null,"startOffset":335,"endOffset":344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea04ecf52889716ffa676e5f33472720","type":"CBI_author","value":"Takasawa H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.67508,"y":429.11},"width":45.513916,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":null,"textAfter":null,"comments":null,"startOffset":152,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e5adb090b4507f2de8506fa38b0500db","type":"CBI_author","value":"Mortelmans","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":276.93524,"y":169.14001},"width":49.12677,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"S, Lawlor T, ","textAfter":" K, Speck","comments":null,"startOffset":216,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a8b1b2af300a0711820cfeb97c58251","type":"CBI_author","value":"Nilsson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":392.557,"y":647.54},"width":28.423035,"height":10.0905,"page":511}],"sectionNumber":5300,"textBefore":"Fahrig R; ","textAfter":" C.A; Rappe","comments":null,"startOffset":180,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b7ed7ebb6768feb3735841c33810dd34","type":"CBI_author","value":"Speck","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":342.8904,"y":169.14001},"width":25.521545,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"T, Mortelmans K, ","textAfter":" W and","comments":null,"startOffset":230,"endOffset":235,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"57076558cfb5ba188a1e86b35f62f3e7","type":"CBI_author","value":"Von Halle","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":266.4116,"y":96.064026},"width":42.95157,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"L.B; Selby P.B; ","textAfter":" E; Sheridan","comments":null,"startOffset":5849,"endOffset":5858,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618732Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"585c5f874234f9a1c339bb2922b764a8","type":"CBI_address","value":"Blum K","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":399.50803,"y":715.58},"width":29.557007,"height":10.0905,"page":511}],"sectionNumber":5299,"textBefore":null,"textAfter":null,"comments":null,"startOffset":95,"endOffset":101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787226Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e73509d59e9689364e4d12ef17c28134","type":"CBI_author","value":"Haworth S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":202.35718,"y":192.18},"width":49.306,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"Report: K-CA 5.8.1/18 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b8363a1426874c5c10642a37c625a6d9","type":"CBI_author","value":"Zeiger","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":403.55685,"y":169.14001},"width":26.96576,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"Speck W and ","textAfter":" E (1983).","comments":null,"startOffset":242,"endOffset":248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"550ba26088e135be26c28e01fc42990d","type":"PII","value":"325-338","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.67,"y":595.82},"width":31.050995,"height":10.0905,"page":511}],"sectionNumber":5300,"textBefore":"Pharmacol., Environ. Toxicol., ","textAfter":".","comments":null,"startOffset":303,"endOffset":310,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787226Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"53ac564e7959ea223700067f1ad244ae","type":"CBI_author","value":"Russell","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":261.73413,"y":107.58002},"width":30.392029,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"were re-evaluated by ","textAfter":" (1981) and","comments":null,"startOffset":5734,"endOffset":5741,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"929875ab8fbf1b7a4b4f5fbb3775b3a6","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":394.35388,"y":157.62},"width":51.53711,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":null,"textAfter":null,"comments":null,"startOffset":329,"endOffset":340,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8685f8f1ad39c00212085b8e860ffff9","type":"PII","value":"157-183","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.92902,"y":387.69},"width":30.981995,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":"RESEARCH, (1995), 343(2-3), ","textAfter":".","comments":null,"startOffset":251,"endOffset":258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787226Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4acf888f351a6d7d8f5b2127567dae5c","type":"CBI_author","value":"Selby","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":219.67924,"y":96.064026},"width":23.848236,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"study. Russell L.B; ","textAfter":" P.B; Von","comments":null,"startOffset":5838,"endOffset":5843,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["cb0fe03efcc821dd516e354558f083b1"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b6950ebe1d8516e50e472ab5e095828","type":"CBI_author","value":"Ishida K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":387.661,"y":340.65},"width":31.834015,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":"E; Saga A; ","textAfter":"; Tsuda S;","comments":null,"startOffset":346,"endOffset":354,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618733Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70c2bdc48f6a4821b9051a6fd07d2514","type":"CBI_author","value":"Miyagawa","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":365.71,"y":429.11},"width":38.935028,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":null,"textAfter":" M; Takasawa","comments":null,"startOffset":140,"endOffset":148,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3616f62e7e2b2eb573b125b31851e450","type":"CBI_author","value":"Haworth","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":179.9846,"y":169.14001},"width":36.059174,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"Bethesda, Maryland. Published: ","textAfter":" S, Lawlor","comments":null,"startOffset":195,"endOffset":202,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"af5d628923477d813ab1728c0d0a2479","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":485.21204,"y":157.62},"width":38.05121,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"Environmental Mutagenesis l:3-142. ","textAfter":" File No.","comments":null,"startOffset":350,"endOffset":358,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc0d106422f14c7e15ab5d580e430f9d","type":"CBI_author","value":"Nishidate E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.73804,"y":350.97},"width":43.30902,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":"K; Izumiyama F; ","textAfter":"; Saga A;","comments":null,"startOffset":325,"endOffset":336,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5fc1b83329b71aca356ebfb688f88781","type":"CBI_author","value":"Klimisch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.46,"y":754.58},"width":35.4971,"height":10.018499,"page":511}],"sectionNumber":5297,"textBefore":null,"textAfter":" scor","comments":null,"startOffset":36,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d6daca84f28577b2ae444aa19ab35b0","type":"CBI_author","value":"Saga A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":456.8621,"y":350.97},"width":18.424011,"height":10.0905,"page":511},{"topLeft":{"x":376.51,"y":340.65},"width":7.497986,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":"F; Nishidate E; ","textAfter":"; Ishida K;","comments":null,"startOffset":338,"endOffset":344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c735da2399806b280dca9ee617a97a97","type":"PII","value":"629-79917","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.67,"y":309.57},"width":31.050995,"height":10.0905,"page":511},{"topLeft":{"x":426.67,"y":313.52997},"width":7.0,"height":8.727,"page":511}],"sectionNumber":5303,"textBefore":"TOXICOLOGY. (2000), 30(6), ","textAfter":".","comments":null,"startOffset":412,"endOffset":421,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787227Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"34d6b7e0d8a1610b4bd251364d55458c","type":"PII","value":"355-379","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":120.98,"y":73.119995},"width":34.419975,"height":10.526819,"page":511}],"sectionNumber":5308,"textBefore":"Mutation Research, 86; ","textAfter":". 17 Sasaki","comments":null,"startOffset":6033,"endOffset":6040,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787227Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"971cb9e15966da12b30cca257a61a5e3","type":"CBI_author","value":"Yin D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":361.87,"y":283.28998},"width":23.319977,"height":10.0905,"page":511}],"sectionNumber":5304,"textBefore":null,"textAfter":"; Zhu H;","comments":null,"startOffset":137,"endOffset":142,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae28bc7baf99e9c6e60d7fbfa8a8b575","type":"CBI_author","value":"Lawlor T","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":231.28856,"y":169.14001},"width":39.91371,"height":10.526819,"page":511}],"sectionNumber":5306,"textBefore":"Published: Haworth S, ","textAfter":", Mortelmans K,","comments":null,"startOffset":206,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618734Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["929875ab8fbf1b7a4b4f5fbb3775b3a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5c24ff2e3e79864bb39251c1e79b5d93","type":"CBI_author","value":"Fahrig","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":355.99,"y":647.54},"width":24.544006,"height":10.0905,"page":511}],"sectionNumber":5300,"textBefore":null,"textAfter":" R; Nilsson","comments":null,"startOffset":170,"endOffset":176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1eb7e67146687125fba69e0eea1cb706","type":"CBI_author","value":"Hu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":416.95,"y":283.28998},"width":11.997986,"height":10.0905,"page":511}],"sectionNumber":5304,"textBefore":"D; Zhu H; ","textAfter":" P; Zhao","comments":null,"startOffset":151,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"72ed982a25ea0c59ff3ff938b82e01ed","type":"CBI_author","value":"Zhu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":388.96,"y":283.28998},"width":15.4539795,"height":10.0905,"page":511}],"sectionNumber":5304,"textBefore":"Yin D; ","textAfter":" H; Hu","comments":null,"startOffset":144,"endOffset":147,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7983081097821e7b8aaac90f606bc4a","type":"CBI_author","value":"Rappe C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.72403,"y":647.54},"width":32.30194,"height":10.0905,"page":511}],"sectionNumber":5300,"textBefore":null,"textAfter":null,"comments":null,"startOffset":193,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7f4e04b79b4bb457903fdbde2d5e2423","type":"CBI_author","value":"Uno Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.63,"y":408.45},"width":25.353973,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":null,"textAfter":null,"comments":null,"startOffset":195,"endOffset":200,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"df092e43d74d4cb8afce4d9a2a527e8f","type":"CBI_author","value":"Sekihashi K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.7451,"y":361.41},"width":44.77603,"height":10.0905,"page":511}],"sectionNumber":5303,"textBefore":"Sasaki Y.F; ","textAfter":"; Izumiyama F;","comments":null,"startOffset":299,"endOffset":310,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15ad05fd17a347c256eb417f5b473c8b","type":"CBI_author","value":"Yoshikawa","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.754,"y":408.45},"width":41.220947,"height":10.0905,"page":511}],"sectionNumber":5302,"textBefore":"T; Uno Y; ","textAfter":" K MUTATION","comments":null,"startOffset":202,"endOffset":211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d196db1f6267cb63c42b38dba4c0302f","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (practical)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":679.58},"width":82.55249,"height":11.017679,"page":512}],"sectionNumber":5309,"textBefore":null,"textAfter":null,"comments":null,"startOffset":91,"endOffset":108,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618735Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82b45cf7360eb33612438938f188a306","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.71,"y":542.39},"width":26.513428,"height":11.017679,"page":512}],"sectionNumber":5310,"textBefore":"the methods of ","textAfter":" (Ames et","comments":null,"startOffset":291,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"211ca099ff5f84579461ae3fd2386754","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.72598,"y":542.39},"width":26.513428,"height":11.017679,"page":512}],"sectionNumber":5310,"textBefore":"of Ames (","textAfter":" et al.1975).","comments":null,"startOffset":297,"endOffset":301,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5a19e6ca1c4674f9676fc25b45206ab","type":"PII","value":"12-24","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":493.818,"y":642.14},"width":26.762024,"height":11.017679,"page":513}],"sectionNumber":5319,"textBefore":"were fasted for ","textAfter":" hr immediately","comments":null,"startOffset":342,"endOffset":347,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787228Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1c2ad2db97ac5b0d1fb038a56fc6735c","type":"CBI_author","value":"Potter","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":604.22},"width":27.334244,"height":11.017679,"page":513}],"sectionNumber":5319,"textBefore":"tissue) in a ","textAfter":"-Elvehjem apparatus with","comments":null,"startOffset":547,"endOffset":553,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"463f2714f4c87caea9eb49359a40c16d","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":316.26663,"y":667.46},"width":36.968292,"height":11.017679,"page":513}],"sectionNumber":5319,"textBefore":"prepared from male ","textAfter":"-Dawley rats and","comments":null,"startOffset":93,"endOffset":100,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"399f32d90ff5788cc8175ddac5515818","type":"CBI_author","value":"Yamasaki","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.44705,"y":106.380005},"width":44.75154,"height":11.017679,"page":514}],"sectionNumber":5334,"textBefore":"McCann J and ","textAfter":" E (1975).","comments":null,"startOffset":823,"endOffset":831,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f57b22515ae5813e912c6d9bd72fbe6d","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Protocol:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":435.23},"width":23.024803,"height":11.017679,"page":514}],"sectionNumber":5331,"textBefore":"evaluations. Evaluation criteria: ","textAfter":" to statistical","comments":null,"startOffset":1091,"endOffset":1096,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7d88c7183386c9da07cf60150e9c95e8","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":118.73999},"width":74.9128,"height":10.929359,"page":514}],"sectionNumber":5334,"textBefore":null,"textAfter":null,"comments":null,"startOffset":790,"endOffset":800,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"292c0f5c01fd39aadd2ea1de761f89e4","type":"PII","value":"347-364","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.53787,"y":93.664},"width":37.6521,"height":11.017679,"page":514}],"sectionNumber":5334,"textBefore":"Mutat. Res., 31:","textAfter":". (Haworth S","comments":null,"startOffset":964,"endOffset":971,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787228Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4dd32d7a5c4e86ee3e887496360e7b75","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":106.380005},"width":26.62384,"height":11.017679,"page":514}],"sectionNumber":5334,"textBefore":"the assay. REFERENCES: ","textAfter":" B, McCann","comments":null,"startOffset":802,"endOffset":806,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618736Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9e17fa222ffabbd58678d25d0e0f795","type":"CBI_author","value":"Haworth S","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.09946,"y":68.32001},"width":48.40576,"height":11.017679,"page":514}],"sectionNumber":5334,"textBefore":null,"textAfter":null,"comments":null,"startOffset":974,"endOffset":983,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e6b17084c1d24a2fd17eb1e14d082703","type":"CBI_author","value":"McCann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":107.25936,"y":106.380005},"width":38.91137,"height":11.017679,"page":514}],"sectionNumber":5334,"textBefore":"REFERENCES: Ames B, ","textAfter":" J and","comments":null,"startOffset":810,"endOffset":816,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7bd332cf83ef29f4b8038df2f919d4df","type":"PII","value":"289-299","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":303.12387,"y":667.7},"width":34.46576,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":"Environmental Health 44:","textAfter":". Syngenta File","comments":null,"startOffset":472,"endOffset":479,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787228Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"45fef3fdff9c246edd9dffce2c786f4d","type":"CBI_author","value":"Yoshimatsu K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":418.63217,"y":702.14},"width":59.515076,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":null,"textAfter":null,"comments":null,"startOffset":239,"endOffset":251,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["NER"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"784e82690340ad6824a81ea0c2a71057","type":"CBI_author","value":"Saitoh H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":483.25272,"y":702.14},"width":37.31418,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":null,"textAfter":null,"comments":null,"startOffset":253,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["NER"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b21220d648b21a3c1e65346e8d019f24","type":"CBI_author","value":"Onodera","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":368.89194,"y":702.14},"width":35.501495,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":"Tokyo, Japan. Published: ","textAfter":" S, Yoshimatsu","comments":null,"startOffset":228,"endOffset":235,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e16dba0d2e466ec98368c003a8bed44a","type":"CBI_author","value":"Onodera S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":206.20172,"y":725.18},"width":50.989258,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":"Report: K-CA 5.8.1/19 ","textAfter":" (1998). Behavior","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a6ba54120ad3f7ccb38cd4a069f5a94","type":"published_information","value":"Journal of Toxicology and","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":477.5398,"y":679.22},"width":45.42163,"height":10.526819,"page":515},{"topLeft":{"x":133.82,"y":667.7},"width":63.88742,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":null,"textAfter":null,"comments":null,"startOffset":422,"endOffset":447,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e6352a77d24d273aed74ddf0d9f5c9e","type":"CBI_author","value":"Uchida","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":690.62},"width":29.77443,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":"K, Saitoh H, ","textAfter":" A (1998).","comments":null,"startOffset":263,"endOffset":269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9adf0f00d89674ac9e02d2f710e92423","type":"published_information","value":"Environmental Health","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":199.26715,"y":667.7},"width":89.59796,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":null,"textAfter":null,"comments":null,"startOffset":448,"endOffset":468,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618738Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5d9ca795a5222603044506a7f863811a","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":576.59},"width":82.55249,"height":11.017679,"page":515}],"sectionNumber":5334,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1143,"endOffset":1160,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618738Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04c8d46567f4d72ea2f2c244e913eceb","type":"CBI_address","value":"Tokyo, Japan","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.50504,"y":702.14},"width":55.939484,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":"University of Science, ","textAfter":". Published: Onodera","comments":null,"startOffset":203,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618738Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ceb1c88c94fa60c184ea5afb711ccb1e","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":341.65927,"y":667.7},"width":37.94171,"height":10.526819,"page":515}],"sectionNumber":5332,"textBefore":"Environmental Health 44:289-299. ","textAfter":" File No.","comments":null,"startOffset":481,"endOffset":489,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618738Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9adf0f00d89674ac9e02d2f710e92423","8a6ba54120ad3f7ccb38cd4a069f5a94"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9e52971540f29ef0142b8ddbd6a89e80","type":"CBI_author","value":"Hattula","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":225.06},"width":30.272415,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":"Published: Räsänen L, ","textAfter":" M, Arstila","comments":null,"startOffset":281,"endOffset":288,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["02afaa8a461273696fb311e8bf682447"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95b714f19b467ef8b4ea848889eb9518","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":112.140015},"width":82.55249,"height":11.017679,"page":517}],"sectionNumber":5359,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1194,"endOffset":1211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4046b1a8a497e6729cc24389cc97a725","type":"PII","value":"1178-1189","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":307.46976,"y":336.09},"width":48.8002,"height":11.017679,"page":517}],"sectionNumber":5359,"textBefore":"Kakusan, Kouso, 20:","textAfter":". (Onodera S","comments":null,"startOffset":1009,"endOffset":1018,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78723Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"980ab019d0376c41ba51ec83dade12f9","type":"CBI_author","value":"Räsänen L.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":197.7955,"y":259.52997},"width":46.557037,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":["02afaa8a461273696fb311e8bf682447"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4e32f92abebee01e4dace5a461641136","type":"CBI_author","value":"Prior","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Statistical analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":702.86},"width":23.024803,"height":11.017679,"page":517}],"sectionNumber":5356,"textBefore":"performed. Evaluation criteria: ","textAfter":" to statistical","comments":null,"startOffset":83,"endOffset":88,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"862fab519ea499325a873c55bfd35651","type":"PII","value":"565-571","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.55423,"y":202.02002},"width":34.55542,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":"vol. 18, No.5. ","textAfter":". Syngenta File","comments":null,"startOffset":504,"endOffset":511,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78723Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"043b3ea05a4f60c9978cdd8997582b30","type":"CBI_author","value":"Räsänen L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":476.70825,"y":236.58002},"width":43.907715,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":null,"textAfter":null,"comments":null,"startOffset":270,"endOffset":279,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":["02afaa8a461273696fb311e8bf682447"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c810b8439a028184b32d87247854546c","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":355.57965,"y":202.02002},"width":38.05127,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":"18, No.5. 565-571. ","textAfter":" File No.","comments":null,"startOffset":513,"endOffset":521,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["02afaa8a461273696fb311e8bf682447"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"154236d0aaf58f22fc170ea217b4c272","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":348.69},"width":74.9128,"height":10.929359,"page":517}],"sectionNumber":5359,"textBefore":null,"textAfter":null,"comments":null,"startOffset":945,"endOffset":955,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c9bb5154eb57753977b66cac964ec136","type":"CBI_author","value":"Yahagi T.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":336.09},"width":45.12687,"height":11.017679,"page":517}],"sectionNumber":5359,"textBefore":null,"textAfter":null,"comments":null,"startOffset":957,"endOffset":966,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"03b0c8106094bdf21b1f1054aab22ef6","type":"CBI_author","value":"Onodera S","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.69943,"y":311.37},"width":47.787506,"height":11.017679,"page":517}],"sectionNumber":5359,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1021,"endOffset":1030,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"02afaa8a461273696fb311e8bf682447","type":"published_information","value":"Bulletin","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":414.01495,"y":213.53998},"width":33.200745,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":null,"textAfter":null,"comments":null,"startOffset":435,"endOffset":443,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf37269dbcee611a0d1b4bd428ea41b2","type":"CBI_author","value":"Arstila","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.30928,"y":225.06},"width":28.121063,"height":10.526819,"page":517}],"sectionNumber":5357,"textBefore":"L, Hattula M, ","textAfter":" A (1977).","comments":null,"startOffset":292,"endOffset":299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["02afaa8a461273696fb311e8bf682447"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e538f940499726bb47b9a0301a497221","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.72598,"y":678.26},"width":26.513428,"height":11.017679,"page":518}],"sectionNumber":5360,"textBefore":"of Ames (","textAfter":" et al.1975).","comments":null,"startOffset":297,"endOffset":301,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30bebe683d82aceb7995aaa4e5e082f8","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":241.05534,"y":82.0},"width":26.513443,"height":11.017679,"page":518}],"sectionNumber":5369,"textBefore":"as described by ","textAfter":" (Ames et","comments":null,"startOffset":280,"endOffset":284,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"16e4690b3928be8116490ce15d7aa265","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.65646,"y":82.0},"width":26.513428,"height":11.017679,"page":518}],"sectionNumber":5369,"textBefore":"by Ames (","textAfter":" et al.","comments":null,"startOffset":286,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dcd3dc3fc52ef70e945ac5e8efebde96","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.71,"y":678.26},"width":26.513428,"height":11.017679,"page":518}],"sectionNumber":5360,"textBefore":"the methods of ","textAfter":" (Ames et","comments":null,"startOffset":291,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61874Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9f7071351d569e8868d354046fcbac5","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TEST PERFORMANCE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":274.4712,"y":304.40997},"width":26.62384,"height":11.017679,"page":519}],"sectionNumber":5381,"textBefore":"by Ames (","textAfter":" et al.1975).","comments":null,"startOffset":355,"endOffset":359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9df0f9210670176cf75c6ef47849e5c","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TEST PERFORMANCE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":242.4552,"y":304.40997},"width":26.513428,"height":11.017679,"page":519}],"sectionNumber":5381,"textBefore":"as described by ","textAfter":" (Ames et","comments":null,"startOffset":349,"endOffset":353,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47de9a93f06770138906adb560dca9b2","type":"CBI_author","value":"Vogel","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TEST PERFORMANCE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":219.76797,"y":279.09003},"width":27.915543,"height":11.017679,"page":519}],"sectionNumber":5381,"textBefore":"was as follows: ","textAfter":"-Bonner–stock solution, minimum-glucose","comments":null,"startOffset":404,"endOffset":409,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a2835eb2f2af273494dd26c142f78d3","type":"CBI_author","value":"Strobel","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":384.17474,"y":450.95},"width":29.894012,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":"Democratic Republic. Published: ","textAfter":" K and","comments":null,"startOffset":239,"endOffset":246,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["31590531ce3189e6ddaa391d7870f1b3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"88a9913010c5fde488df503a44128716","type":"CBI_author","value":"McCann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":107.25936,"y":563.75},"width":38.91137,"height":11.017679,"page":520}],"sectionNumber":5385,"textBefore":"REFERENCES: Ames B, ","textAfter":" J and","comments":null,"startOffset":915,"endOffset":921,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee95d076a6cc47cb8b212d8936034739","type":"CBI_author","value":"Grummt T","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":445.42883,"y":450.95},"width":44.59494,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":null,"textAfter":null,"comments":null,"startOffset":253,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["NER"],"reference":["31590531ce3189e6ddaa391d7870f1b3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c2b9806a0181f3d204bdc8a561038483","type":"CBI_author","value":"Räsänen L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.69943,"y":513.83},"width":47.798553,"height":11.017679,"page":520}],"sectionNumber":5385,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1079,"endOffset":1088,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e7971ca79cefefa2608e6f57e433da74","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":376.72598,"y":200.82},"width":26.513428,"height":11.017679,"page":520}],"sectionNumber":5386,"textBefore":"of Ames (","textAfter":" et al.1975).","comments":null,"startOffset":297,"endOffset":301,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618741Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"26b74b88283471c08bd315b93d0dc705","type":"CBI_author","value":"Grummt T.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":268.3123,"y":473.99},"width":48.329895,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":"Strobel K. and ","textAfter":" (1987). Aliphatic","comments":null,"startOffset":37,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["31590531ce3189e6ddaa391d7870f1b3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b49992fe5c4bbfba05dcbbfab2b2bb8","type":"PII","value":"143-156","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":252.61292,"y":427.91},"width":34.556732,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":"Environmental Chemistry 14:","textAfter":". Syngenta File","comments":null,"startOffset":391,"endOffset":398,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787232Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"86699a21fbe710a036ecf0315201253b","type":"CBI_author","value":"Yamasaki","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.53183,"y":563.75},"width":44.75154,"height":11.017679,"page":520}],"sectionNumber":5385,"textBefore":"McCann J and ","textAfter":" E (1975).","comments":null,"startOffset":928,"endOffset":936,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"31590531ce3189e6ddaa391d7870f1b3","type":"published_information","value":"Toxicological and Environmental Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":449.01923,"y":439.43},"width":74.206055,"height":10.526819,"page":520},{"topLeft":{"x":133.82,"y":427.91},"width":104.534195,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":null,"textAfter":null,"comments":null,"startOffset":346,"endOffset":387,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c4650b801fe1ba736933f38c0aa0b3ee","type":"PII","value":"347-364","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.4164,"y":551.15},"width":37.77356,"height":11.017679,"page":520}],"sectionNumber":5385,"textBefore":"Mutat. Res., 31:","textAfter":". (Räsänen L","comments":null,"startOffset":1069,"endOffset":1076,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787232Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"46345f20e52b02363808582c512ff903","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":563.75},"width":26.62384,"height":11.017679,"page":520}],"sectionNumber":5385,"textBefore":"this assay. REFERENCES: ","textAfter":" B, McCann","comments":null,"startOffset":907,"endOffset":911,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d853c942b24365df264d51b28763f41","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":293.63965,"y":427.91},"width":37.94171,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":"Environmental Chemistry 14:143-156. ","textAfter":" File No.","comments":null,"startOffset":400,"endOffset":408,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["31590531ce3189e6ddaa391d7870f1b3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d13c62c25cbaf0d4136e69cf0755b34a","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":576.11},"width":74.9128,"height":10.929359,"page":520}],"sectionNumber":5385,"textBefore":null,"textAfter":null,"comments":null,"startOffset":895,"endOffset":905,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"964026577100946d6aebc1dde9ee4158","type":"CBI_author","value":"Strobel K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":200.81335,"y":473.99},"width":44.375793,"height":10.526819,"page":520}],"sectionNumber":5383,"textBefore":"Report: K-CA 5.8.1/21 ","textAfter":" and Grummt","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["31590531ce3189e6ddaa391d7870f1b3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c39df4a3cb29a615f813e2a84ef04de","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.71,"y":200.82},"width":26.513428,"height":11.017679,"page":520}],"sectionNumber":5386,"textBefore":"the methods of ","textAfter":" (Ames et","comments":null,"startOffset":291,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618742Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c24b83d81d5b09b5fb7da5bae3bc2bf","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":338.01},"width":82.68918,"height":11.017679,"page":520}],"sectionNumber":5385,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1246,"endOffset":1263,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"110bf93cbbb34f6f43c135a247386945","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":690.26},"width":26.62384,"height":11.017679,"page":523}],"sectionNumber":5418,"textBefore":"the assay. REFERENCES: ","textAfter":" B, McCann","comments":null,"startOffset":1065,"endOffset":1069,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0a3b31c6c41d9fe6ebf5d28bee239a6d","type":"PII","value":"347-364","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.4164,"y":677.66},"width":37.77356,"height":11.017679,"page":523}],"sectionNumber":5418,"textBefore":"Mutat. Res., 31:","textAfter":". (Strobel K","comments":null,"startOffset":1227,"endOffset":1234,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787233Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"45dddcadd4d14a8adfc1741a87b7174f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":262.19962,"y":565.79},"width":38.04129,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":"Gakkaishi, (1996) 19:871-877. ","textAfter":" File No.","comments":null,"startOffset":370,"endOffset":378,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30aa5c064df1910fb50e8d7970da4a1b","type":"CBI_author","value":"Yamasaki","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.44705,"y":690.26},"width":44.75154,"height":11.017679,"page":523}],"sectionNumber":5418,"textBefore":"McCann J and ","textAfter":" E (1975).","comments":null,"startOffset":1086,"endOffset":1094,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"178cb3f95adcdbf869f6c906732cf1a6","type":"CBI_author","value":"Nunoshiba T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":326.23,"y":588.86},"width":55.40161,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":null,"textAfter":null,"comments":null,"startOffset":213,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe4e62c06a878048334bfb684e64284a","type":"CBI_author","value":"Ono Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":180.98,"y":588.86},"width":30.481598,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":null,"textAfter":null,"comments":null,"startOffset":183,"endOffset":188,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"86011fe3ad34de1dfd3b5b2e9aa9688c","type":"PII","value":"871-877","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":221.30864,"y":565.79},"width":34.42096,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":"Gakkaishi, (1996) 19:","textAfter":". Syngenta File","comments":null,"startOffset":361,"endOffset":368,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787234Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a5fe7ee87da06a25a4c86721fcfd1bc1","type":"CBI_author","value":"Somiya I","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":280.47043,"y":588.86},"width":39.15625,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":null,"textAfter":null,"comments":null,"startOffset":203,"endOffset":211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fee2b54c23ca7fcf1f5965a0d5f843d3","type":"PII","value":"(1996) 19","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":179.26749,"y":565.79},"width":40.222473,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":"Mizu Kankyo Gakkaishi, ","textAfter":":871-877. Syngenta File","comments":null,"startOffset":351,"endOffset":360,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787234Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"80f18750531e2cefa963d80d61823e77","type":"CBI_author","value":"Oda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":388.32074,"y":588.86},"width":17.53363,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":"I, Nunoshiba T, ","textAfter":" Y (1996).","comments":null,"startOffset":226,"endOffset":229,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6a4b7422ef894fe18e06ddb36e5adb7c","type":"CBI_author","value":"Strobel","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":392.57944,"y":652.34},"width":32.751038,"height":11.017679,"page":523}],"sectionNumber":5418,"textBefore":"Res., 31:347-364. (","textAfter":" K and","comments":null,"startOffset":1237,"endOffset":1244,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"611809bb14869cade2ebb979c47af243","type":"CBI_author","value":"Grummt T","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":456.50107,"y":652.34},"width":47.588776,"height":11.017679,"page":523}],"sectionNumber":5418,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1251,"endOffset":1259,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b190bd572fdc3ed660c4d6a03cad81f5","type":"CBI_author","value":"McCann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":107.25936,"y":690.26},"width":38.91137,"height":11.017679,"page":523}],"sectionNumber":5418,"textBefore":"REFERENCES: Ames B, ","textAfter":" J and","comments":null,"startOffset":1073,"endOffset":1079,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9054dae275e2532b02cafc2b558ab5c0","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (not indicated).","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.53882,"y":474.71},"width":82.55249,"height":11.017679,"page":523}],"sectionNumber":5419,"textBefore":null,"textAfter":null,"comments":null,"startOffset":96,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e506492464f267594fd772a894667004","type":"CBI_author","value":"Ono Y.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":201.16196,"y":611.78},"width":32.86203,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":"Report: K-CA 5.8.1/22 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618744Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93302c3fe90c42a70d3a99a08e393e37","type":"CBI_author","value":"Kobayashi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":218.01128,"y":588.86},"width":43.698532,"height":10.526819,"page":523}],"sectionNumber":5416,"textBefore":"Published: Ono Y, ","textAfter":" U, Somiya","comments":null,"startOffset":190,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d6932b4d6dd1617bb7a76cf523b855fe","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":702.62},"width":74.9128,"height":10.929359,"page":523}],"sectionNumber":5418,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1053,"endOffset":1063,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb759ac7545bb8f0218c3629c5d86600","type":"PII","value":"10-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TEST PERFORMANCE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":252.93211,"y":53.080017},"width":26.757858,"height":11.017679,"page":524}],"sectionNumber":5431,"textBefore":"at 28°C. After ","textAfter":" min, the","comments":null,"startOffset":1381,"endOffset":1386,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787235Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6cb216b2c1f8e93f9d0c0a501083dfeb","type":"CBI_author","value":"Osaka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.66656,"y":157.73999},"width":25.93988,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"for Food Packaging. ","textAfter":" City Institute","comments":null,"startOffset":153,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24431f23dea53f512e29433aded84c0b","type":"CBI_author","value":"Fujita","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":282.3884,"y":134.70001},"width":24.37616,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"A, Yamaguchi Y, ","textAfter":" T, Kuroda","comments":null,"startOffset":303,"endOffset":309,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"252f4935a1510021648c351ae04c8b33","type":"CBI_author","value":"Yamaguchi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":220.77213,"y":134.70001},"width":47.055084,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Published. Ozaki A, ","textAfter":" Y, Fujita","comments":null,"startOffset":290,"endOffset":299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3d7b17469de3906649014d41a461b77f","type":"PII","value":"543-0026","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.62555,"y":146.22003},"width":39.503906,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Tojo-cho, Tennouji-ku, Osaka ","textAfter":", Japan. Published.","comments":null,"startOffset":253,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787235Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a7d1f1d3984db07d7b735de7d3a55934","type":"CBI_author","value":"Kuroda","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":320.2464,"y":134.70001},"width":30.949768,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Y, Fujita T, ","textAfter":" K and","comments":null,"startOffset":313,"endOffset":319,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18711e016cbe51e468397880519b36e4","type":"CBI_author","value":"Ozaki A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":181.46,"y":134.70001},"width":34.92375,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"543-0026, Japan. Published. ","textAfter":", Yamaguchi Y,","comments":null,"startOffset":281,"endOffset":288,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618745Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"725d15c9f21d73ea0d4c19d6d22c5bfc","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":309.1502,"y":111.65997},"width":38.05127,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Toxicology; 42: 1323-1337. ","textAfter":" File No.","comments":null,"startOffset":494,"endOffset":502,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1205fc9ecc72f691f674f55fe81df42","type":"CBI_author","value":"Ozaki A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":202.59622,"y":169.14001},"width":37.8022,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Report: K-CA 5.8.1/23 ","textAfter":", et al.,","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3240735defbba68167fa4f33126b6df","type":"CBI_author","value":"Endo","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":380.30527,"y":134.70001},"width":22.035583,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Kuroda K and ","textAfter":", G (2004).","comments":null,"startOffset":326,"endOffset":330,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"74b93bd97801831f07473bfab15b1ee1","type":"CBI_author","value":"Osaka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":420.16782,"y":146.22003},"width":25.929932,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"8-34 Tojo-cho, Tennouji-ku, ","textAfter":" 543-0026, Japan.","comments":null,"startOffset":247,"endOffset":252,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f2232739613f348a3e4239f1f0b7c3eb","type":"PII","value":"1323-1337","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":258.14072,"y":111.65997},"width":44.509186,"height":10.526819,"page":525}],"sectionNumber":5432,"textBefore":"Chemical Toxicology; 42: ","textAfter":". Syngenta File","comments":null,"startOffset":483,"endOffset":492,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787235Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b21e73cf9a1bfbc6e0ffe5dc1a4eaea1","type":"CBI_author","value":"Ono Y","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"REPORTED RESULTS\nPreliminary cytotoxicity assay: Data not presented","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":448.76944,"y":220.97998},"width":30.686554,"height":11.017679,"page":525}],"sectionNumber":5434,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1106,"endOffset":1111,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f0dfb09358feffd43a6af48b871ea9fa","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions reported in this paper, 2,4,6-TCP gave a positive genotoxic response in both\nthe Rec-assay in Bacillus subtilis and in vitro comet assay in HL-60 cells.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":292.05},"width":28.467995,"height":10.018499,"page":526}],"sectionNumber":5437,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"377d1edc0ebf53f2225f17212f3bc0ae","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (>97%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":728.9},"width":82.55249,"height":11.017679,"page":526}],"sectionNumber":5435,"textBefore":null,"textAfter":null,"comments":null,"startOffset":86,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"114418816192c84eee394a8f4a64d0f8","type":"PII","value":"325-338","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":318.63,"y":478.55},"width":34.340027,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":"Vol. 12, pp ","textAfter":". Syngenta File","comments":null,"startOffset":385,"endOffset":392,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787236Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3e7e5d1f6d1fd12f87e0654d40d8dd3a","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (99%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":400.65},"width":82.55249,"height":11.017679,"page":528}],"sectionNumber":5448,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"44f7071768388b20681d2d1f1746717e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":357.04984,"y":478.55},"width":37.931763,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":"12, pp 325-338. ","textAfter":" File No.","comments":null,"startOffset":394,"endOffset":402,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a2057d700b0f32e641a2eca0b913e8b2","type":"CBI_author","value":"Rappe C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":155.04477,"y":490.07},"width":40.0233,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":null,"textAfter":null,"comments":null,"startOffset":262,"endOffset":269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0344af5d4a36450ba0e2571051ae23f6","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":344.31473,"y":501.59},"width":38.110992,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":"i. Br., West ","textAfter":". Published: Fahrig","comments":null,"startOffset":218,"endOffset":225,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3f65c59490aee10eb90c3330cbdb6926","type":"CBI_author","value":"Nilsson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":480.8664,"y":501.59},"width":31.527527,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":"Published: Fahrig R, ","textAfter":" C and","comments":null,"startOffset":248,"endOffset":255,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"216ab6ce899e095f7cfa251ad638f90d","type":"CBI_author","value":"Fahrig","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.70972,"y":501.59},"width":27.085266,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":"West Germany. Published: ","textAfter":" R, Nilsson","comments":null,"startOffset":238,"endOffset":244,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"619660d1e3e040fcd695ddf46365423f","type":"CBI_author","value":"Freiburg i. Br.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":253.46953,"y":501.59},"width":61.018967,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":null,"textAfter":null,"comments":null,"startOffset":196,"endOffset":211,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db202dd44f0c3ee4d3901dd391055fbb","type":"CBI_author","value":"Ozaki A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.44943,"y":576.35},"width":37.884644,"height":11.017679,"page":528}],"sectionNumber":5447,"textBefore":"conditions described. (","textAfter":" et al,","comments":null,"startOffset":1014,"endOffset":1021,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f2f7caa0f54bb34f0968abf61417bf78","type":"CBI_author","value":"Fahrig R.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS\nRec - assay","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.164,"y":524.51},"width":39.585052,"height":10.526819,"page":528}],"sectionNumber":5445,"textBefore":"Report: K-CA 5.8.1/24 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb1c911f63481fd41f7cafc02250f565","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":665.06},"width":28.467995,"height":10.018499,"page":529}],"sectionNumber":5450,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618747Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ca579c6339d61dc30a2b6e552e928c1b","type":"PII","value":"42 175","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Experimental Design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":382.87,"y":116.46002},"width":10.059998,"height":10.0905,"page":530},{"topLeft":{"x":477.82,"y":116.46002},"width":14.619995,"height":10.0905,"page":530}],"sectionNumber":5465,"textBefore":null,"textAfter":null,"comments":null,"startOffset":42,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787237Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"abbe0215f97260fd65cdd955ef461a81","type":"CBI_address","value":"black coat","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":440.92603,"y":539.99},"width":37.67502,"height":10.0905,"page":530}],"sectionNumber":5459,"textBefore":null,"textAfter":null,"comments":null,"startOffset":98,"endOffset":108,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787237Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cf7cb588680f8f2fb37a88ffb31f16c8","type":"PII","value":"36 181","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Experimental Design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":382.87,"y":146.22003},"width":10.059998,"height":10.0905,"page":530},{"topLeft":{"x":477.82,"y":146.22003},"width":14.619995,"height":10.0905,"page":530}],"sectionNumber":5463,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787237Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"953e1c9c4929d44e221fddcfee097c8e","type":"PII","value":"152 967","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Experimental Design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":380.59,"y":161.10004},"width":14.619995,"height":10.0905,"page":530},{"topLeft":{"x":477.82,"y":161.10004},"width":14.619995,"height":10.0905,"page":530}],"sectionNumber":5462,"textBefore":null,"textAfter":null,"comments":null,"startOffset":46,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787237Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a9d8e3400a64967d7a572734937d331f","type":"PII","value":"38 159","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Experimental Design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":382.87,"y":131.34003},"width":10.059998,"height":10.0905,"page":530},{"topLeft":{"x":477.82,"y":131.34003},"width":14.619995,"height":10.0905,"page":530}],"sectionNumber":5464,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787238Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d208047d6db74fe72dde53dd58ca52b5","type":"CBI_author","value":"Valcovic","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":271.12576,"y":143.34003},"width":36.975586,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"E; Sheridan W; ","textAfter":" L; (1981).","comments":null,"startOffset":314,"endOffset":322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea47cc881adbd5532be4bffcc3c4131c","type":"PII","value":"100 42 175","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Evaluation of mouse spot test results","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":143.9,"y":354.93},"width":14.619995,"height":10.0905,"page":531},{"topLeft":{"x":191.57,"y":354.93},"width":10.059998,"height":10.0905,"page":531},{"topLeft":{"x":241.85,"y":354.93},"width":14.619995,"height":10.0905,"page":531}],"sectionNumber":5473,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787238Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"edc03eb578a05ec912c31e9bab363b42","type":"CBI_author","value":"Sheridan","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":215.36969,"y":143.34003},"width":36.417755,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"Von Halle E; ","textAfter":" W; Valcovic","comments":null,"startOffset":302,"endOffset":310,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1181d11922bd0576576c38a95bd8cb26","type":"CBI_author","value":"Fahrig R","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":436.85944,"y":217.62},"width":39.794586,"height":11.017679,"page":531}],"sectionNumber":5477,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1318,"endOffset":1326,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4e9cd9e4c3c72b58b44ad2386baeaf2b","type":"CBI_author","value":"Russell L.B.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":197.20786,"y":177.77997},"width":51.0988,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["RULE"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bab6dd2e1e4f7149645e59ed1f94e715","type":"CBI_author","value":"Russell L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":445.85703,"y":154.85999},"width":39.475555,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"TN 37830. Published: ","textAfter":".B; Selby P.B;","comments":null,"startOffset":265,"endOffset":274,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"433ff1097f8fe0259ea80e2654929ddd","type":"PII","value":"355-379","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":185.63193,"y":120.29999},"width":34.457672,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"Mutagenesis Research 86:","textAfter":". Syngenta File","comments":null,"startOffset":475,"endOffset":482,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787238Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"96611b6e84d51fe7c8f3c1dcebef561e","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":226.66916,"y":120.29999},"width":38.05124,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"Mutagenesis Research 86:355-379. ","textAfter":" File No.","comments":null,"startOffset":484,"endOffset":492,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"89b995c2989ef9e0e87b502172df08f2","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":471.20514,"y":131.82},"width":51.636658,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":null,"textAfter":null,"comments":null,"startOffset":451,"endOffset":462,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2dafe90fd591e8485036b4277ada3ef3","type":"PII","value":"50 36 181","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Evaluation of mouse spot test results","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":146.18,"y":400.53},"width":10.059998,"height":10.0905,"page":531},{"topLeft":{"x":191.57,"y":400.53},"width":10.059998,"height":10.0905,"page":531},{"topLeft":{"x":241.85,"y":400.53},"width":14.619995,"height":10.0905,"page":531}],"sectionNumber":5471,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787239Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"66db57285a721233a17c0d4455db39ca","type":"CBI_author","value":"Von Halle","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":155.54,"y":143.34003},"width":43.798096,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"L.B; Selby P.B; ","textAfter":" E; Sheridan","comments":null,"startOffset":289,"endOffset":298,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e332302727990345bdd3e3305beea4ef","type":"CBI_author","value":"Brown","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Evaluation of mouse spot test results","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":500.14,"y":456.35},"width":27.109009,"height":10.018499,"page":531}],"sectionNumber":5469,"textBefore":null,"textAfter":null,"comments":null,"startOffset":50,"endOffset":55,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bcbb71062ed2890d0b2112131b78a14d","type":"PII","value":"50 38 159","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Evaluation of mouse spot test results","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":146.18,"y":377.73},"width":10.059998,"height":10.0905,"page":531},{"topLeft":{"x":191.57,"y":377.73},"width":10.059998,"height":10.0905,"page":531},{"topLeft":{"x":241.85,"y":377.73},"width":14.619995,"height":10.0905,"page":531}],"sectionNumber":5472,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618749Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787239Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"921e4cb5b63b47fd6aee10cfd25edf99","type":"PII","value":"152 967","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Evaluation of mouse spot test results","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.29,"y":423.47},"width":14.619995,"height":10.0905,"page":531},{"topLeft":{"x":241.85,"y":423.47},"width":14.619995,"height":10.0905,"page":531}],"sectionNumber":5470,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787239Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"601cd14af93287bee55f57d8614b3c6f","type":"CBI_author","value":"Selby","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":499.21283,"y":154.85999},"width":23.848206,"height":10.526819,"page":531}],"sectionNumber":5475,"textBefore":"Published: Russell L.B; ","textAfter":" P.B; Von","comments":null,"startOffset":278,"endOffset":283,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["89b995c2989ef9e0e87b502172df08f2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7bac5c8224e6a164d407bd0841c255d","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":142.7,"y":514.31},"width":56.63057,"height":11.017679,"page":532}],"sectionNumber":5481,"textBefore":null,"textAfter":null,"comments":null,"startOffset":424,"endOffset":435,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dfdda5d7bea2d1be64b3948e7efbe6c7","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":156.43916,"y":554.99},"width":37.931686,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":"Mutagenesis 7:325- 348. ","textAfter":" File No.","comments":null,"startOffset":455,"endOffset":463,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78c386b327d15f9b3ef692c4ede84095","ea729f9c671886fa08ad3f39c1880a1c","ccaf8071f2deb3497e733e561711d46c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ccaf8071f2deb3497e733e561711d46c","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":267.92145,"y":577.91},"width":51.43753,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":null,"textAfter":null,"comments":null,"startOffset":303,"endOffset":314,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"86ac2d647377740af5375e2ca8d68191","type":"CBI_author","value":"Woodruff","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":469.41275,"y":589.46},"width":40.381927,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":"R, Mason J, ","textAfter":" R, Zimmering","comments":null,"startOffset":262,"endOffset":270,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["78c386b327d15f9b3ef692c4ede84095","ea729f9c671886fa08ad3f39c1880a1c","ccaf8071f2deb3497e733e561711d46c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f905a5d4023663f56d6c20ad8df0992","type":"CBI_author","value":"Russell L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":418.25943,"y":640.34},"width":42.89679,"height":11.017679,"page":532}],"sectionNumber":5481,"textBefore":"is required. (","textAfter":".B.. et al.,","comments":null,"startOffset":384,"endOffset":393,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c7bac5c8224e6a164d407bd0841c255d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea729f9c671886fa08ad3f39c1880a1c","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":441.26556,"y":566.51},"width":51.53711,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":null,"textAfter":null,"comments":null,"startOffset":431,"endOffset":442,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f927b9f0ddca87213ece79c1ec0b659e","type":"CBI_author","value":"Valencia","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":374.45407,"y":589.46},"width":36.36801,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":"Wisconsin, Madison. Published: ","textAfter":" R, Mason","comments":null,"startOffset":241,"endOffset":249,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78c386b327d15f9b3ef692c4ede84095","ea729f9c671886fa08ad3f39c1880a1c","ccaf8071f2deb3497e733e561711d46c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"575cdfbc9e35472e73661dbb5b88f9e7","type":"CBI_author","value":"Zimmering S","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":577.91},"width":55.44136,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":null,"textAfter":null,"comments":null,"startOffset":274,"endOffset":285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["NER"],"reference":["78c386b327d15f9b3ef692c4ede84095","ea729f9c671886fa08ad3f39c1880a1c","ccaf8071f2deb3497e733e561711d46c"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d500960d2c1eb9ed6d8428bccd38da67","type":"CBI_author","value":"Fahrig","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":475.08377,"y":678.26},"width":29.670898,"height":11.017679,"page":532}],"sectionNumber":5481,"textBefore":"2,4,6-TCP reported in ","textAfter":" et al.,","comments":null,"startOffset":204,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["c7bac5c8224e6a164d407bd0841c255d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78c386b327d15f9b3ef692c4ede84095","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":357.41995,"y":612.5},"width":51.54712,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":null,"textAfter":null,"comments":null,"startOffset":59,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1bb7ce78e1d7a2056860d8b6da8c7a26","type":"CBI_author","value":"Valencia R.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.61816,"y":612.5},"width":49.794052,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":"Report: K-CA 5.8.1/26 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["78c386b327d15f9b3ef692c4ede84095","ea729f9c671886fa08ad3f39c1880a1c","ccaf8071f2deb3497e733e561711d46c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5910da440aaf09002763e5e81da64fed","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (Practical)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":464.99},"width":82.55249,"height":11.017679,"page":532}],"sectionNumber":5482,"textBefore":null,"textAfter":null,"comments":null,"startOffset":91,"endOffset":108,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b01b3e5e91f03be3f77441c2b04af3b4","type":"CBI_author","value":"Mason","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":427.4612,"y":589.46},"width":28.16095,"height":10.526819,"page":532}],"sectionNumber":5479,"textBefore":"Published: Valencia R, ","textAfter":" J, Woodruff","comments":null,"startOffset":253,"endOffset":258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78c386b327d15f9b3ef692c4ede84095","ea729f9c671886fa08ad3f39c1880a1c","ccaf8071f2deb3497e733e561711d46c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c31ef819862805ca6cc1addccd0fe6e","type":"CBI_author","value":"Woodruff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":479.58142,"y":661.82},"width":44.37616,"height":11.017679,"page":533}],"sectionNumber":5486,"textBefore":"described previously (","textAfter":" et al,","comments":null,"startOffset":154,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a70d376d2e202d38908474d26be053e4","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":123.962875,"y":60.159973},"width":42.013626,"height":11.017679,"page":533}],"sectionNumber":5487,"textBefore":"as suggested by ","textAfter":" (Margolin et","comments":null,"startOffset":2856,"endOffset":2864,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bef5fc7b92ade374c32e235aaf278310","type":"CBI_author","value":"Zimmering","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":132.3643,"y":649.22},"width":50.43715,"height":11.017679,"page":533}],"sectionNumber":5486,"textBefore":null,"textAfter":null,"comments":null,"startOffset":179,"endOffset":188,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618751Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"232eeab0080a54d2bd96f78d366e3803","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.33553,"y":60.159973},"width":42.107758,"height":11.017679,"page":533}],"sectionNumber":5487,"textBefore":"by Margolin (","textAfter":" et al,","comments":null,"startOffset":2866,"endOffset":2874,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3eb373e4b054ea0b8eb5180b73bf0fb4","type":"PII","value":"189-202","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":309.97583,"y":282.33002},"width":37.77414,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"Environ Mutagen 6:","textAfter":". Zimmering S,","comments":null,"startOffset":1009,"endOffset":1016,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78724Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2cee6ec7caa23a3f66ba1468eea9ee0d","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":345.57},"width":42.013596,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"test described. REFERENCES: ","textAfter":" B, Collings","comments":null,"startOffset":574,"endOffset":582,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fd2975ec8742807320902cf690a7d06e","type":"PII","value":"3074 2817 2598","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Results of 2,4,6-TCP administration to drosophila and induction of recessive\nlethals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":313.99,"y":511.55},"width":83.005005,"height":10.0905,"page":534}],"sectionNumber":5492,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78724Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f0a710850d260d097fa8eed4247b8a95","type":"CBI_author","value":"Zimmering S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":224.09,"y":307.52997},"width":59.898407,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":780,"endOffset":791,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9a7bf19fee5245c3fe118bd5357d5173","type":"CBI_author","value":"Knuutinen J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.7208,"y":178.5},"width":52.235474,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":"Hattula M. and ","textAfter":" (1985). Mutagenesis","comments":null,"startOffset":37,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["b73908a73e07eb873290fa045b1b0eed","40adb218f4a6918e82c68132e740a1d5","cd7f2c3b616f41fa2874e269e29b5781"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b1e7989c317dc0c7b927f409252c712d","type":"CBI_author","value":"Collings B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":127.65024,"y":345.57},"width":51.90544,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":586,"endOffset":596,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b73908a73e07eb873290fa045b1b0eed","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":344.20877,"y":178.5},"width":51.417603,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":null,"textAfter":null,"comments":null,"startOffset":58,"endOffset":69,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618752Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9e82b829b01e1be9a0fa37957916fae5","type":"CBI_author","value":"Knuutinen J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":435.60693,"y":155.58002},"width":52.592896,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":null,"textAfter":null,"comments":null,"startOffset":257,"endOffset":268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["NER"],"reference":["b73908a73e07eb873290fa045b1b0eed","40adb218f4a6918e82c68132e740a1d5","cd7f2c3b616f41fa2874e269e29b5781"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ebfd8f7d7d8fa1a06630a41247b2f6ce","type":"CBI_author","value":"Woodruff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":307.52997},"width":44.39824,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"Environ Mutagen 5:705-716. ","textAfter":" R, Mason","comments":null,"startOffset":747,"endOffset":755,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fa58bb718068ea42f9ac6b8d9aaa084c","type":"CBI_author","value":"Hattula","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":365.94666,"y":155.58002},"width":30.38205,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":"Jyväskylä, Finland. Published: ","textAfter":" M and","comments":null,"startOffset":243,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["b73908a73e07eb873290fa045b1b0eed","40adb218f4a6918e82c68132e740a1d5","cd7f2c3b616f41fa2874e269e29b5781"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e2c4b4209fa4fae9eb0af305146ce23e","type":"PII","value":"2549 2482 2320","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Results of 2,4,6-TCP administration to drosophila and induction of recessive\nlethals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":313.99,"y":557.15},"width":83.005005,"height":10.0905,"page":534}],"sectionNumber":5490,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787241Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0e426e46c620752c83226e20df28fb61","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":357.93},"width":74.9128,"height":10.929359,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":562,"endOffset":572,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"89764e9479ca134a11a99da4e279e294","type":"CBI_author","value":"Valencia R","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":168.05664,"y":307.52997},"width":50.8125,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":768,"endOffset":778,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"65758a96e327cb59bef9ec2ad9c28904","type":"PII","value":"705-716","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":381.6917,"y":332.85},"width":37.818268,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"Environ Mutagen 5:","textAfter":". Woodruff R,","comments":null,"startOffset":738,"endOffset":745,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787241Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5de4c3ddc64874b34bb04c165100395a","type":"CBI_author","value":"Zimmering S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":257.01},"width":59.666557,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1018,"endOffset":1029,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9557ae714f73eb8dd721d4ebb0a0bef5","type":"CBI_author","value":"Mason","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":124.30512,"y":307.52997},"width":31.084023,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"5:705-716. Woodruff R, ","textAfter":" J, Valencia","comments":null,"startOffset":759,"endOffset":764,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618753Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40adb218f4a6918e82c68132e740a1d5","type":"published_information","value":"Chemosphere","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":202.0161,"y":132.53998},"width":56.01906,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":null,"textAfter":null,"comments":null,"startOffset":374,"endOffset":385,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a99176da42f127cc699bedd4a82c369","type":"CBI_author","value":"Woodruff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":227.45984,"y":257.01},"width":44.37616,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"J, Valencia R, ","textAfter":" R (1985).","comments":null,"startOffset":1052,"endOffset":1060,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cd7f2c3b616f41fa2874e269e29b5781","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":133.82,"y":144.06},"width":51.43744,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":null,"textAfter":null,"comments":null,"startOffset":277,"endOffset":288,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c0023b9b975447edd5b37d813bf4a02b","type":"CBI_author","value":"Valencia R","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.29944,"y":219.06},"width":50.20529,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1221,"endOffset":1231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"97d1c22020342e52ef17a6676938751d","type":"PII","value":"1617-1625","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":274.88348,"y":132.53998},"width":44.44641,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":"chloroguaiacols. Chemosphere 14: ","textAfter":". Syngenta File","comments":null,"startOffset":390,"endOffset":399,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787242Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"78260989ca19695fea2f3ac47bbe992a","type":"CBI_author","value":"Hattula M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.1222,"y":178.5},"width":44.13675,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":"Report: K-CA 5.8.1/27 ","textAfter":" and Knuutinen","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["b73908a73e07eb873290fa045b1b0eed","40adb218f4a6918e82c68132e740a1d5","cd7f2c3b616f41fa2874e269e29b5781"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"967ca87214da75681644522e02894014","type":"PII","value":"87-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":496.30896,"y":244.26001},"width":32.311096,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"Environ Mutagen 7: ","textAfter":". (Valencia R","comments":null,"startOffset":1212,"endOffset":1218,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787242Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0089965e28ef4c793e78081e32ae92b5","type":"PII","value":"3782 3574 3535","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Results of 2,4,6-TCP administration to drosophila and induction of recessive\nlethals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":313.99,"y":534.35},"width":83.005005,"height":10.0905,"page":534}],"sectionNumber":5491,"textBefore":null,"textAfter":null,"comments":null,"startOffset":26,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787242Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2ccde80c8000784953aca50f6c1c5491","type":"PII","value":"3520 3266 3226","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Results of 2,4,6-TCP administration to drosophila and induction of recessive\nlethals","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":313.99,"y":580.07},"width":83.005005,"height":10.0905,"page":534}],"sectionNumber":5489,"textBefore":null,"textAfter":null,"comments":null,"startOffset":23,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618754Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787242Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe6bee63fe7d91bc652a0422808c6f8f","type":"CBI_author","value":"Mason","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":187.49806,"y":345.57},"width":31.084015,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"B, Collings B, ","textAfter":" J (1983).","comments":null,"startOffset":598,"endOffset":603,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df621a3d409ddf82a993b4049fdf6703","type":"CBI_author","value":"Valencia R","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.9507,"y":257.01},"width":50.680023,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1040,"endOffset":1050,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fc74227644da5333149255feae409b63","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":323.39954,"y":132.53998},"width":37.94171,"height":10.526819,"page":534}],"sectionNumber":5495,"textBefore":"Chemosphere 14: 1617-1625. ","textAfter":" File No.","comments":null,"startOffset":401,"endOffset":409,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["b73908a73e07eb873290fa045b1b0eed","40adb218f4a6918e82c68132e740a1d5","cd7f2c3b616f41fa2874e269e29b5781"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"efe91970a9c7028424e0f80ec1b658c8","type":"CBI_author","value":"Mason","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":128.62177,"y":257.01},"width":31.158234,"height":11.017679,"page":534}],"sectionNumber":5497,"textBefore":"6:189-202. Zimmering S, ","textAfter":" J, Valencia","comments":null,"startOffset":1031,"endOffset":1036,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3ea6507a27ad4a33727c4a710d8af10e","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (>99.95%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.47955,"y":753.5},"width":82.55249,"height":11.017679,"page":535}],"sectionNumber":5498,"textBefore":null,"textAfter":null,"comments":null,"startOffset":89,"endOffset":106,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"062954086eeb543479833c71fb833d63","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the experimental conditions reported, 2,4,6-TCP showed mutagenic potential in V79 cells in\nvitro, when tested in the absence of metabolic activation.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":342.69},"width":28.467995,"height":10.018499,"page":535}],"sectionNumber":5500,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"74472baabd8b929bd4408b77d3fc40b0","type":"PII","value":"12-14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":505.76276,"y":349.41},"width":26.937256,"height":11.017679,"page":536}],"sectionNumber":5518,"textBefore":"dishes per point ","textAfter":" days after","comments":null,"startOffset":1149,"endOffset":1154,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787243Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a1829870364bd4a8a360b68b7ff738ee","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":266.82898,"y":299.49},"width":36.968292,"height":11.017679,"page":536}],"sectionNumber":5518,"textBefore":"months old male ","textAfter":"-Dawley rats were","comments":null,"startOffset":1325,"endOffset":1332,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"198ca697ba499d4b14a4d09a1380928d","type":"CBI_author","value":"Hattula","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":377.09946,"y":487.31},"width":33.369263,"height":11.017679,"page":537}],"sectionNumber":5529,"textBefore":"metabolic activation. (","textAfter":" MI and","comments":null,"startOffset":775,"endOffset":782,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618755Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"85d05c10b6d0d1c017f85e174e8ba1ef","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":245.56123,"y":400.29},"width":76.85545,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":null,"textAfter":null,"comments":null,"startOffset":395,"endOffset":412,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618756Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"062043cc19f91bdab1a0027263c0f95d","type":"CBI_author","value":"Jansson K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.85721,"y":446.39},"width":46.069,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":"Report: K-CA 5.8.1/28 ","textAfter":" and Jansson","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618756Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["85d05c10b6d0d1c017f85e174e8ba1ef"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"76246fe6f136830c6db57c3b8a89fd1f","type":"CBI_author","value":"Knuutinen J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.01575,"y":487.31},"width":54.378357,"height":11.017679,"page":537}],"sectionNumber":5529,"textBefore":null,"textAfter":null,"comments":null,"startOffset":790,"endOffset":801,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618756Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b43b878e54ff5ef180c6c23bb672b719","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (>99.5%).","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":322.40997},"width":82.55249,"height":11.017679,"page":537}],"sectionNumber":5530,"textBefore":null,"textAfter":null,"comments":null,"startOffset":89,"endOffset":106,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618756Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1d34ff9f514340ab4223862360a563b","type":"PII","value":"165-168","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":341.7252,"y":400.29},"width":34.514893,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":"Mutation Research 171:","textAfter":". Syngenta File","comments":null,"startOffset":417,"endOffset":424,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618759Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787243Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e3db822146ea305713921a2c206e4207","type":"CBI_author","value":"Jansson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":152.04681,"y":411.81},"width":32.015427,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":"Jansson K and ","textAfter":" V (1986).","comments":null,"startOffset":278,"endOffset":285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618759Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["85d05c10b6d0d1c017f85e174e8ba1ef"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15ce4a0b2e8a6de1ef0a12ee2cbaa996","type":"CBI_author","value":"Jansson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":480.32977,"y":423.35},"width":32.12506,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":"Jyväskylä Finland. Published: ","textAfter":" K and","comments":null,"startOffset":264,"endOffset":271,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618759Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["85d05c10b6d0d1c017f85e174e8ba1ef"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b86ccb50830a072f6b5bd6f6c5466698","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":380.20016,"y":400.29},"width":38.04129,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":"Mutation Research 171:165-168. ","textAfter":" File No.","comments":null,"startOffset":426,"endOffset":434,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618759Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["85d05c10b6d0d1c017f85e174e8ba1ef"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b74c356392b0a453e5a87999d8d9f27","type":"CBI_author","value":"Jansson V.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":268.2127,"y":446.39},"width":46.06909,"height":10.526819,"page":537}],"sectionNumber":5527,"textBefore":"Jansson K. and ","textAfter":" (1986). Inability","comments":null,"startOffset":37,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618759Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["85d05c10b6d0d1c017f85e174e8ba1ef"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f07f46d0143746bb012257e4182cf658","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the study reported, 2,4,6-TCP did not increase the number of 6-thioguanine","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":612.74},"width":28.467995,"height":10.018499,"page":538}],"sectionNumber":5532,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dd8f640eec154cd246e6d5acebefa050","type":"CBI_author","value":"McMillan","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":163.14384,"y":125.34003},"width":44.906082,"height":11.017679,"page":538}],"sectionNumber":5549,"textBefore":"described previously (","textAfter":" and Fox,","comments":null,"startOffset":212,"endOffset":220,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"191686920b0407ad9428d4a042f79dfc","type":"CBI_author","value":"Fox","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.704,"y":125.34003},"width":18.178253,"height":11.017679,"page":538}],"sectionNumber":5549,"textBefore":"previously (McMillan and ","textAfter":", 1979). 1","comments":null,"startOffset":225,"endOffset":228,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"592b8c946f96073e4d21f292731bfee9","type":"CBI_author","value":"Jansson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":275.15247,"y":147.29999},"width":32.015533,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":"Jyväskylä Finland. Published: ","textAfter":" K and","comments":null,"startOffset":216,"endOffset":223,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["2d8f2fb5956957851028eafe3ac83dcf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"735b0c27029aaa6bede1d79cc9a7b429","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":455.43738,"y":223.5},"width":35.312256,"height":11.017679,"page":539}],"sectionNumber":5552,"textBefore":"(Jansson K and ","textAfter":" V, 1986)","comments":null,"startOffset":970,"endOffset":977,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2f5fe490c30ed2394f8f8c1447df7712","type":"CBI_author","value":"Fox","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":142.764,"y":274.05},"width":18.178253,"height":11.017679,"page":539}],"sectionNumber":5552,"textBefore":"McMillan S and ","textAfter":" M (1979).","comments":null,"startOffset":762,"endOffset":765,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"362be71e2ce94ad28fa6f48e1a76d0b5","type":"CBI_author","value":"Jansson V.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":259.5375,"y":170.34003},"width":44.375885,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":"Jansson K. and ","textAfter":" (1992). Genotoxicity","comments":null,"startOffset":37,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["2d8f2fb5956957851028eafe3ac83dcf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d8f2fb5956957851028eafe3ac83dcf","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":327.40253,"y":135.89996},"width":78.04068,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":null,"textAfter":null,"comments":null,"startOffset":317,"endOffset":334,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24ef1526dab1040dc103f44e7196bd76","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.10907,"y":223.5},"width":35.42267,"height":11.017679,"page":539}],"sectionNumber":5552,"textBefore":"60:91- 107. (","textAfter":" K and","comments":null,"startOffset":956,"endOffset":963,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61876Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3441091bf1beae31a88ca881c758f54d","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":286.52997},"width":74.9128,"height":10.929359,"page":539}],"sectionNumber":5552,"textBefore":null,"textAfter":null,"comments":null,"startOffset":735,"endOffset":745,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"162ed5a9606df3d9f9126ee833f17f97","type":"CBI_author","value":"McMillan","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":274.05},"width":45.115845,"height":11.017679,"page":539}],"sectionNumber":5552,"textBefore":"non mutagenic. REFERENCES: ","textAfter":" S and","comments":null,"startOffset":747,"endOffset":755,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"76ef0edd7f734eefd2d58adc9a158de4","type":"CBI_author","value":"Jansson K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.36124,"y":170.34003},"width":44.266235,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":"Report: K-CA 5.8.1/29 ","textAfter":" and Jansson","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["2d8f2fb5956957851028eafe3ac83dcf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1498dcf6d27847fff225518e47adddf","type":"PII","value":"175-179","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":425.96683,"y":135.89996},"width":34.772827,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":"Mutation Research 280:","textAfter":". Syngenta File","comments":null,"startOffset":339,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787244Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a727d769ba11ccb5f8d105b7a2141bf0","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":466.0045,"y":135.89996},"width":38.05127,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":"Mutation Research 280:175-179. ","textAfter":" File No.","comments":null,"startOffset":348,"endOffset":356,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["2d8f2fb5956957851028eafe3ac83dcf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ccd9b648ab8a770a10860de795edb49","type":"CBI_author","value":"Jansson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":343.97617,"y":147.29999},"width":32.015533,"height":10.526819,"page":539}],"sectionNumber":5550,"textBefore":"Jansson K and ","textAfter":" V (1992).","comments":null,"startOffset":230,"endOffset":237,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["2d8f2fb5956957851028eafe3ac83dcf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c6820d1f1ca83845d18670aa0242209","type":"PII","value":"10-90","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":318.61572,"y":539.15},"width":26.734253,"height":11.017679,"page":540}],"sectionNumber":5553,"textBefore":"at concentrations of ","textAfter":" µg/mL. A","comments":null,"startOffset":769,"endOffset":774,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787245Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"32aebd147dfa8ab847985ca34095dbe4","type":"PII","value":"10-180","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":145.77791,"y":577.07},"width":32.002106,"height":11.017679,"page":540}],"sectionNumber":5553,"textBefore":"at concentrations of ","textAfter":" µg/mL. No","comments":null,"startOffset":540,"endOffset":546,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787245Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e206d4ca97ebb53833d740492bfa7a92","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":309.69},"width":28.467995,"height":10.018499,"page":540}],"sectionNumber":5554,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618761Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"096c8448a5b707fb3b77d964c39f5b75","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":753.5},"width":82.55249,"height":11.017679,"page":540}],"sectionNumber":5552,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1168,"endOffset":1185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf0ada07d56f2b9c91a052f54514395f","type":"CBI_author","value":"Countryman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.27945,"y":172.73999},"width":55.80252,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2701,"endOffset":2711,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b0197760daaeb27d9da9b53b5966bb5b","type":"PII","value":"23-28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":185.34003},"width":26.559998,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":"hyperdiploid cells with ","textAfter":" chromosomes were","comments":null,"startOffset":2546,"endOffset":2551,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787246Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c36cb3ee7f1606f5d9d5f5f272c72d0d","type":"CBI_author","value":"Leong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.3205,"y":134.82},"width":29.207184,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":"as described by ","textAfter":" et al.","comments":null,"startOffset":2840,"endOffset":2845,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e96c4c6761134f24b801b7db8a79580e","type":"PII","value":"21-23","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":505.62677,"y":248.58002},"width":26.953247,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":"(50 cells/slide) with ","textAfter":" chromosomes were","comments":null,"startOffset":2126,"endOffset":2131,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787246Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2373c91484eac02964b9aa4fd59a91dd","type":"CBI_author","value":"Heddle","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.56583,"y":172.73999},"width":32.7731,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":"described (Countryman and ","textAfter":", 1976). Statistical","comments":null,"startOffset":2716,"endOffset":2722,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"09daa5b7e276da8e4234866b5e8ba73f","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":343.38287,"y":210.65997},"width":43.802063,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":"as described (","textAfter":" et al.","comments":null,"startOffset":2397,"endOffset":2405,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5cf4767c8ef9771297b255c23bf18115","type":"CBI_author","value":"Nakamura","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.15668,"y":112.5},"width":46.80493,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"C, Bloom A, ","textAfter":" F, Ahmed","comments":null,"startOffset":1973,"endOffset":1981,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8b7089451f3f45763a0f2739d772305","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":156.92831,"y":99.900024},"width":42.01361,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"S, Rimpo J, ","textAfter":" B, Resnick","comments":null,"startOffset":2010,"endOffset":2018,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64b35fdbe60f227406058d5780afd90e","type":"CBI_author","value":"Rimpo J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":113.75088,"y":99.900024},"width":38.28208,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2001,"endOffset":2008,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618762Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d01d0bc941ed0079e7a79503a4cf46a4","type":"CBI_author","value":"Bloom","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.5522,"y":112.5},"width":31.06189,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"B, Cannon C, ","textAfter":" A, Nakamura","comments":null,"startOffset":1964,"endOffset":1969,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e58f7ba437fd6b645476405cf96b2d3","type":"PII","value":"24 42","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-46: Overview of gene mutation, chromosome aberration, hyperploidy and micronuclei\nfollowing exposure of V79 cells to 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.57,"y":438.95},"width":10.059998,"height":10.0905,"page":542},{"topLeft":{"x":353.59,"y":438.95},"width":10.053986,"height":10.0905,"page":542}],"sectionNumber":5577,"textBefore":null,"textAfter":null,"comments":null,"startOffset":21,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787246Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ad72e5718b8d9c7fc040fb7ad4571e37","type":"CBI_author","value":"Duk S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":79.81392,"y":99.900024},"width":29.085754,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1994,"endOffset":1999,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"004694ae65cd63f7822858eb3b87412a","type":"CBI_author","value":"Ahmed","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":498.80405,"y":112.5},"width":33.369293,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"A, Nakamura F, ","textAfter":" M, Duk","comments":null,"startOffset":1985,"endOffset":1990,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5601f7a4b29228956edfedfd402ba2bf","type":"PII","value":"34 17 126","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-46: Overview of gene mutation, chromosome aberration, hyperploidy and micronuclei\nfollowing exposure of V79 cells to 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.57,"y":425.15},"width":10.059998,"height":10.0905,"page":542},{"topLeft":{"x":355.87,"y":425.15},"width":10.059998,"height":10.0905,"page":542},{"topLeft":{"x":458.5,"y":425.15},"width":14.619995,"height":10.0905,"page":542}],"sectionNumber":5578,"textBefore":null,"textAfter":null,"comments":null,"startOffset":16,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787247Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"92b56a88de149852a022aef06bbfca7e","type":"CBI_author","value":"Resnick M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.12656,"y":99.900024},"width":49.311066,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2022,"endOffset":2031,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"51fe23f39e8563f9b7f0b94a5f784cc7","type":"PII","value":"30 36","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-46: Overview of gene mutation, chromosome aberration, hyperploidy and micronuclei\nfollowing exposure of V79 cells to 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.57,"y":356.37},"width":10.059998,"height":10.0905,"page":542},{"topLeft":{"x":353.59,"y":356.37},"width":10.053986,"height":10.0905,"page":542}],"sectionNumber":5583,"textBefore":null,"textAfter":null,"comments":null,"startOffset":29,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787247Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"11b4e8dfb1f80099b9a8a892f5257359","type":"CBI_author","value":"Cannon","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":338.2162,"y":112.5},"width":35.30124,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"S, Brown B, ","textAfter":" C, Bloom","comments":null,"startOffset":1954,"endOffset":1960,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618763Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"13ff897ab4d4b82660ac8e1d816d9478","type":"PII","value":"39 12 112","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-46: Overview of gene mutation, chromosome aberration, hyperploidy and micronuclei\nfollowing exposure of V79 cells to 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.57,"y":342.69},"width":10.059998,"height":10.0905,"page":542},{"topLeft":{"x":355.87,"y":342.69},"width":10.059998,"height":10.0905,"page":542},{"topLeft":{"x":458.5,"y":342.69},"width":14.619995,"height":10.0905,"page":542}],"sectionNumber":5584,"textBefore":null,"textAfter":null,"comments":null,"startOffset":24,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618764Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787247Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f7aeb1bac098c68e230c1c113a1304ef","type":"CBI_author","value":"Brown","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":291.21887,"y":112.5},"width":30.98462,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"C, Colman S, ","textAfter":" B, Cannon","comments":null,"startOffset":1945,"endOffset":1950,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618764Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb9da418ec6acadff47606c359b961e9","type":"CBI_author","value":"Colman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":240.60046,"y":112.5},"width":35.77597,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"M, Reuben C, ","textAfter":" S, Brown","comments":null,"startOffset":1935,"endOffset":1941,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618764Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a8d716dc2039ed06da51c1211734f2d","type":"CBI_author","value":"Armstrong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":122.737434,"y":112.5},"width":48.72593,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"332 Galloway S, ","textAfter":" M, Reuben","comments":null,"startOffset":1912,"endOffset":1921,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618764Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fa7fef5817be7c473d13fc67eeb45527","type":"CBI_author","value":"Countryman P,","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":150.41998},"width":69.27134,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1736,"endOffset":1749,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"66ca0d65efadd8c69beac999a9ba1b15","type":"CBI_author","value":"Reuben","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.8827,"y":112.5},"width":34.70514,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"S, Armstrong M, ","textAfter":" C, Colman","comments":null,"startOffset":1925,"endOffset":1931,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2c8c24cd9aae13cbb729eea3d87d51a","type":"CBI_author","value":"Heddle","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":157.18222,"y":150.41998},"width":32.662735,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"Countryman P, and ","textAfter":" J (1976).","comments":null,"startOffset":1754,"endOffset":1760,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9de50ccfc72eb157e9c30193e3138614","type":"CBI_author","value":"Zeiger","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":343.53745,"y":99.900024},"width":29.604675,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"Anderson B and ","textAfter":" E (1987).","comments":null,"startOffset":2048,"endOffset":2054,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1485e49417ecf8ca2a7382ccb6119e96","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":162.89996},"width":74.9128,"height":10.929359,"page":542}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1724,"endOffset":1734,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de84111641856703f870f4a443204942","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":112.5},"width":43.912476,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"Res. 41:321- 332 ","textAfter":" S, Armstrong","comments":null,"startOffset":1900,"endOffset":1908,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f0ccf6c08ea96f1b42811696cdbbd721","type":"CBI_author","value":"Thilly W","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":111.59807,"y":753.5},"width":43.66957,"height":11.017679,"page":543}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2237,"endOffset":2245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2832e4df21d48ef378c2e514ded7ee8c","type":"CBI_author","value":"North","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":414.7917,"y":640.58},"width":24.425964,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"Research Triangle Park, ","textAfter":" Carolina. Accepted:","comments":null,"startOffset":342,"endOffset":347,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"19067f519f58e7a8f109c51159254cd3","type":"CBI_author","value":"Leong","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":753.5},"width":29.207184,"height":11.017679,"page":543}],"sectionNumber":5588,"textBefore":"(Suppl. 10), 1-175. ","textAfter":" P, Thilly","comments":null,"startOffset":2228,"endOffset":2233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618765Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a9af205a382218650084918071918e0","type":"CBI_author","value":"McBride","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":448.03067,"y":629.06},"width":36.577118,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"P, Edwards I, ","textAfter":" D, Riach","comments":null,"startOffset":439,"endOffset":446,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618766Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b1872adf698d0200c443d1d2ff823637","type":"CBI_author","value":"McGregor D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.36124,"y":675.02},"width":54.90352,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"Report: K-CA 5.8.1/30 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618766Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"27631cd50e9d6f42365cf69b367504eb","type":"CBI_author","value":"Morgenthaler S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":180.66428,"y":753.5},"width":72.36258,"height":11.017679,"page":543}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2250,"endOffset":2264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618766Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0749f597cf59ae3270b6fc0f0be8406c","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":156.43916,"y":594.62},"width":37.931686,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"Mutagenesis l2:85- 154. ","textAfter":" File No.","comments":null,"startOffset":633,"endOffset":641,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618766Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"badc12ee5c851f57b9975ded93a2be94","type":"CBI_author","value":"Riach","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":498.8366,"y":629.06},"width":24.336304,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"I, McBride D, ","textAfter":" C, Caspary","comments":null,"startOffset":450,"endOffset":455,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618766Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21715811de5b8894dee64ee5d59e7b7a","type":"CBI_author","value":"Brown A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":305.28143,"y":629.06},"width":38.270355,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"Published: McGregor D, ","textAfter":", Cattanach P,","comments":null,"startOffset":406,"endOffset":413,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"afb724de5d69071ca69be8f98cd93dc4","type":"PII","value":"10-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.54701,"y":130.85999},"width":26.742966,"height":11.017679,"page":543}],"sectionNumber":5589,"textBefore":"RTG range of ","textAfter":"% was achieved,","comments":null,"startOffset":1194,"endOffset":1199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787249Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b16220003df1172460e85ae6d91f43dd","type":"CBI_author","value":"Cattanach","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":347.82062,"y":629.06},"width":40.889862,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"D, Brown A, ","textAfter":" P, Edwards","comments":null,"startOffset":415,"endOffset":424,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18af6cb381a22d8c9f7abc6f9feca37e","type":"CBI_author","value":"Caspary","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":148.20226,"y":617.54},"width":33.917816,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"D, Riach C, ","textAfter":" W (1988).","comments":null,"startOffset":459,"endOffset":466,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d2bf7b231360117a2d7b38b2236cc8d","type":"CBI_author","value":"McGregor","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":248.47952,"y":629.06},"width":42.56311,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"March 1988. Published: ","textAfter":" D, Brown","comments":null,"startOffset":394,"endOffset":402,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"26641d57bbddb5844fa2e652bf1b5baf","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":443.5065,"y":606.14},"width":51.53711,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":null,"textAfter":null,"comments":null,"startOffset":609,"endOffset":620,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21f67f43eddb3ecccba5e92ed6e2eb68","type":"published_information","value":"Environmental Health","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.03041,"y":640.58},"width":90.26152,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":null,"textAfter":null,"comments":null,"startOffset":287,"endOffset":307,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99c934942ce9e22cd0c7d64288208959","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":516.59},"width":82.55249,"height":11.017679,"page":543}],"sectionNumber":5588,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2617,"endOffset":2634,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e6939adafc0f95a87e81f91e7dcf70a2","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.10907,"y":715.58},"width":35.42267,"height":11.017679,"page":543}],"sectionNumber":5588,"textBefore":"150:403- 410. (","textAfter":" K and","comments":null,"startOffset":2432,"endOffset":2439,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618767Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"922d55e9d9965e971e7f003d000a44af","type":"CBI_author","value":"Edwards","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":401.79626,"y":629.06},"width":35.90988,"height":10.526819,"page":543}],"sectionNumber":5586,"textBefore":"A, Cattanach P, ","textAfter":" I, McBride","comments":null,"startOffset":428,"endOffset":435,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["26641d57bbddb5844fa2e652bf1b5baf","21f67f43eddb3ecccba5e92ed6e2eb68"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1aef7987508cc5fa3228ba0efcad89d2","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":455.43738,"y":715.58},"width":35.312256,"height":11.017679,"page":543}],"sectionNumber":5588,"textBefore":"(Jansson K and ","textAfter":" V, 1992)","comments":null,"startOffset":2446,"endOffset":2453,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"212d79d62ce1e958d980b72e2a2f1b34","type":"PII","value":"11-14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":215.60594,"y":551.15},"width":26.644073,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":"were incubated for ","textAfter":" days in","comments":null,"startOffset":1490,"endOffset":1495,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78725Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1f9a319a66a068ad4c3ae9d06e0782b7","type":"CBI_address","value":"Artek 880 Automated Colony","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.94049,"y":525.83},"width":146.14279,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1559,"endOffset":1585,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c25a1959061b1d3d5a8dc4213765f464","type":"CBI_author","value":"Caspary","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":424.55},"width":37.22223,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":"system (Lee and ","textAfter":", 1983) and","comments":null,"startOffset":2016,"endOffset":2023,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"36cf1533d4f99661276c077097118414","type":"CBI_author","value":"Noble","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":482.28134,"y":639.62},"width":27.849274,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":"F20p) containing 0.35% ","textAfter":" agar and","comments":null,"startOffset":1098,"endOffset":1103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"00be8c95b5b127dba4ce20fda24f6804","type":"CBI_author","value":"Noble","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.16144,"y":576.35},"width":27.970703,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":"concentrations of 0.35% ","textAfter":" agar and","comments":null,"startOffset":1334,"endOffset":1339,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618768Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5c49bf81f6cfeb6c0961a799d8aa6806","type":"CBI_author","value":"Lee","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":493.71454,"y":437.27},"width":17.54898,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":"this system (","textAfter":" and Caspary,","comments":null,"startOffset":2008,"endOffset":2011,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618769Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb4fbd6e79ab561114d0e3d7b42d0139","type":"CBI_author","value":"Caspary","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":102.22512,"y":72.27997},"width":37.100807,"height":11.017679,"page":546}],"sectionNumber":5619,"textBefore":"REFERENCES: Lee YJ, ","textAfter":" WJ (1983).","comments":null,"startOffset":2183,"endOffset":2190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618769Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["b5c3ae716f32c7ab5e83fde3929a36ff"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5c3ae716f32c7ab5e83fde3929a36ff","type":"published_information","value":"Mutat Res","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":64.104,"y":59.679993},"width":46.562096,"height":11.017679,"page":546}],"sectionNumber":5619,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2270,"endOffset":2279,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618769Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e97732d7be230d873a6acdcbbc04146","type":"PII","value":"417-430","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":132.0,"y":59.679993},"width":37.62001,"height":11.017679,"page":546}],"sectionNumber":5619,"textBefore":"Mutat Res 113:","textAfter":". (McGregor D.","comments":null,"startOffset":2284,"endOffset":2291,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618769Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78725Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"832830c802584ec06f1c2fc0ebe1d28b","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":84.784},"width":74.9128,"height":10.929359,"page":546}],"sectionNumber":5619,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2163,"endOffset":2173,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618769Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"055933f0f876b36e82a23a95cab3b073","type":"CBI_author","value":"Lee","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":72.27997},"width":17.548958,"height":11.017679,"page":546}],"sectionNumber":5619,"textBefore":"lymphoma assay. REFERENCES: ","textAfter":" YJ, Caspary","comments":null,"startOffset":2175,"endOffset":2178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618769Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["b5c3ae716f32c7ab5e83fde3929a36ff"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"88f60344c794abd53b0bf5ceb51c886a","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":586.79},"width":82.55249,"height":11.017679,"page":547}],"sectionNumber":5619,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2477,"endOffset":2494,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b6373e7ef1431045619ab2d5b0d8e34","type":"CBI_author","value":"Armstrong M.J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":207.5264,"y":711.86},"width":70.25186,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["RULE"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8abbd7e0492480ba6fe49551ce265926","type":"CBI_address","value":"Merck Research Laboratories","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":348.0462,"y":700.34},"width":122.74991,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"Aneuploidy In Vitro. ","textAfter":", WP45-305, West","comments":null,"startOffset":135,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30b0f8847e96eb18a50acee44881cac6","type":"CBI_address","value":"West Point, PA 19486","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":688.82},"width":92.15393,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"Research Laboratories, WP45-305, ","textAfter":", USA. Accepted","comments":null,"startOffset":174,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"49a183179893e812954432b9b9d82a67","type":"PII","value":"101-108","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":253.73409,"y":665.9},"width":34.51555,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"Mutation Research 303:","textAfter":". Syngenta File","comments":null,"startOffset":380,"endOffset":387,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787251Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"74749db8c5eb3c97e06a3a0bd3eb745d","type":"CBI_author","value":"Galloway","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.03818,"y":688.82},"width":39.80426,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"Published: Armstrong MJ, ","textAfter":" SM, Ashby","comments":null,"startOffset":248,"endOffset":256,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e3b52c401641d6c94e8fdfa23aaaf5cd","type":"CBI_author","value":"McGregor D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":419.21945,"y":753.5},"width":60.25168,"height":11.017679,"page":547}],"sectionNumber":5619,"textBefore":"Res 113:417-430. (","textAfter":" et al,","comments":null,"startOffset":2294,"endOffset":2305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["b5c3ae716f32c7ab5e83fde3929a36ff"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"68b5e78eab3db9e3e295885dfaad5790","type":"CBI_author","value":"Armstrong","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":398.31802,"y":688.82},"width":44.22647,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"July 1993. Published: ","textAfter":" MJ, Galloway","comments":null,"startOffset":234,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61877Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"85a74e87db31898516fd0738724287ac","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":294.71964,"y":665.9},"width":38.023926,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"Mutation Research 303:101-108. ","textAfter":" File No.","comments":null,"startOffset":389,"endOffset":397,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618771Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da5b017913a8101f5c31aa22ab476d20","type":"CBI_author","value":"Ashby J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":677.42},"width":34.00743,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":"MJ, Galloway SM, ","textAfter":" (1993). 2,4,6-Trichlorophenol","comments":null,"startOffset":261,"endOffset":268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618771Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["96f22ede2d2174a7c262af5c96e14693"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"96f22ede2d2174a7c262af5c96e14693","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":157.67984,"y":665.9},"width":76.745804,"height":10.526819,"page":547}],"sectionNumber":5617,"textBefore":null,"textAfter":null,"comments":null,"startOffset":358,"endOffset":375,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618771Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0861099c9f1cb41150a92c6342a70520","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.1784,"y":509.63},"width":37.089752,"height":11.017679,"page":548}],"sectionNumber":5629,"textBefore":"prepared from male ","textAfter":"-Dawley rats induced","comments":null,"startOffset":289,"endOffset":296,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618771Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5eb915e8bdd152567f6f155ba5522ec1","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":471.55936,"y":66.03998},"width":35.279144,"height":11.017679,"page":549}],"sectionNumber":5667,"textBefore":"of Jansson (","textAfter":" et al,","comments":null,"startOffset":652,"endOffset":659,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618771Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f7bd0818908662adbd3ef633f0cfa05","type":"PII","value":"19-23","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":141.29999},"width":26.559998,"height":11.017679,"page":549}],"sectionNumber":5667,"textBefore":"metaphase cells containing ","textAfter":" chromosomes were","comments":null,"startOffset":122,"endOffset":127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787252Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d34ef040033cdbaf543bd9667848f930","type":"PII","value":"23-28","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":222.73776,"y":53.440002},"width":26.59224,"height":11.017679,"page":549}],"sectionNumber":5667,"textBefore":"metaphase cells with ","textAfter":" chromosomes were","comments":null,"startOffset":701,"endOffset":706,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787252Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"392598428666f340f3de36cabf72d7fe","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":429.88135,"y":66.03998},"width":35.733826,"height":11.017679,"page":549}],"sectionNumber":5667,"textBefore":"the criteria of ","textAfter":" (Jansson et","comments":null,"startOffset":643,"endOffset":650,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f56c2f81211d3ea243483138920935c5","type":"CBI_author","value":"Jansson K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":141.41998},"width":49.807846,"height":11.017679,"page":550}],"sectionNumber":5670,"textBefore":"in vitro. REFERENCES: ","textAfter":", and Jansson","comments":null,"startOffset":2426,"endOffset":2436,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3050da5a2a653bf5765f18b4eba339de","type":"PII","value":"175 179","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":151.33105,"y":128.82},"width":36.63713,"height":11.017679,"page":550}],"sectionNumber":5670,"textBefore":"Mutation Res. 280, ","textAfter":". (Armstrong M.","comments":null,"startOffset":2547,"endOffset":2554,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787252Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f66d9df6649ef14919c29a8df510f2dc","type":"PII","value":"300-600","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":270.22086,"y":554.39},"width":37.789124,"height":11.017679,"page":550}],"sectionNumber":5670,"textBefore":"the dose range ","textAfter":" µg/ml were","comments":null,"startOffset":416,"endOffset":423,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787253Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0afbd134082b619a4d67c509f1027549","type":"CBI_author","value":"Armstrong M. J.","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.77945,"y":116.099976},"width":73.78674,"height":11.017679,"page":550}],"sectionNumber":5670,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2557,"endOffset":2572,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"89bb56f0d4db1a7c43fd9f9a4c633aed","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":153.77997},"width":74.9128,"height":10.929359,"page":550}],"sectionNumber":5670,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2414,"endOffset":2424,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4eb0eb0dbd02a87256ca649f7a0d0611","type":"PII","value":"150-250","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.55048,"y":228.65997},"width":37.949493,"height":11.017679,"page":550}],"sectionNumber":5670,"textBefore":"tetraploid cells at ","textAfter":" µg/mL 2,4,6-TCP","comments":null,"startOffset":2243,"endOffset":2250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618772Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787253Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"82aa046c98d90858d92d82fad70f6dcc","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":138.81169,"y":141.41998},"width":35.422714,"height":11.017679,"page":550}],"sectionNumber":5670,"textBefore":"Jansson K., and ","textAfter":" V (1992).","comments":null,"startOffset":2442,"endOffset":2449,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a1215750d3cce3aac00cd0d78c66cfa5","type":"CBI_author","value":"Cannon","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":330.9872,"y":716.42},"width":32.115112,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"S, Brown B, ","textAfter":" C, Bloom","comments":null,"startOffset":313,"endOffset":319,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d26ae7d1f645d0df1cc9c924365b9bf1","type":"PII","value":"50-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.6595,"y":404.73},"width":32.190506,"height":11.017679,"page":551}],"sectionNumber":5671,"textBefore":"concentration range of ","textAfter":" µg/mL both","comments":null,"startOffset":419,"endOffset":425,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787253Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8a9e2264be39f56b9314b54ee0f62e64","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":338.24695,"y":681.98},"width":51.44748,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":null,"textAfter":null,"comments":null,"startOffset":565,"endOffset":576,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d037cd1ba4b84037dd84820811a87c8","type":"CBI_author","value":"Armstrong","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":716.42},"width":44.21643,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"Published: Galloway S, ","textAfter":" M, Reuben","comments":null,"startOffset":271,"endOffset":280,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aad203802c66f8109f0807557d3f6a72","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.3156,"y":580.55},"width":82.530426,"height":11.017679,"page":551}],"sectionNumber":5670,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2771,"endOffset":2788,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"496f72d970bc12170746aa6cd075c640","type":"CBI_author","value":"Colman","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":241.5763,"y":716.42},"width":32.58316,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"M, Reuben C, ","textAfter":" S, Brown","comments":null,"startOffset":294,"endOffset":300,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618773Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c2d73c9d70949cb4c4ba1c6fac87c2de","type":"CBI_author","value":"Galloway","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":471.22513,"y":727.94},"width":39.923767,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"Kensington, Maryland. Published: ","textAfter":" S, Armstrong","comments":null,"startOffset":259,"endOffset":267,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"143a2fde0ccd355b6ffc21765d072597","type":"CBI_author","value":"Reuben","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":195.06409,"y":716.42},"width":31.645905,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"S, Armstrong M, ","textAfter":" C, Colman","comments":null,"startOffset":284,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c63616686e259ce8705cb95719d0189","type":"CBI_author","value":"Ahmed","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":477.9371,"y":716.42},"width":30.312286,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"A, Nakamura F, ","textAfter":" M, Duk","comments":null,"startOffset":344,"endOffset":349,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e625e9f3e09ee5729ca8237c2d09cd87","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":445.32175,"y":681.98},"width":38.05127,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"Molecular Mutagenesis 10:1-175. ","textAfter":" File no.","comments":null,"startOffset":587,"endOffset":595,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d87edc276a023976c5fa2a875b3beef4","type":"CBI_author","value":"Resnick M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":274.26596,"y":705.02},"width":47.75226,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":null,"textAfter":null,"comments":null,"startOffset":381,"endOffset":390,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["NER"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2c3b2980661f7f8dae0a387020d7b242","type":"CBI_author","value":"Zeiger","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":389.35385,"y":705.02},"width":26.856201,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"M, Anderson B, ","textAfter":" E (1987).","comments":null,"startOffset":404,"endOffset":410,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b255b0865da8a050c393832140aa1694","type":"CBI_author","value":"Rimpo J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":170.7517,"y":705.02},"width":37.9516,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":null,"textAfter":null,"comments":null,"startOffset":360,"endOffset":367,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618774Z"}],"manualChanges":[],"engines":["NER"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c3394949eefa0777a25a086c39f54bfc","type":"CBI_author","value":"Bloom","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":377.9686,"y":716.42},"width":28.280457,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"B, Cannon C, ","textAfter":" A, Nakamura","comments":null,"startOffset":323,"endOffset":328,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618775Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"19843e1f9fb4d43c9b314d5b4f9a2f78","type":"PII","value":"16-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.12503,"y":366.81},"width":32.10495,"height":11.017679,"page":551}],"sectionNumber":5671,"textBefore":"µg/mL (–S9) and ","textAfter":" µg/mL (+S9),","comments":null,"startOffset":629,"endOffset":635,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618775Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787254Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"40b2b2fe74bdb99b843815a66e8c0efd","type":"CBI_author","value":"Galloway S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":200.92291,"y":750.98},"width":52.562912,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"Report: K-CA 5.8.1/32 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618775Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c2bcaeeabf980fe2d50cc654abe147a5","type":"CBI_author","value":"Duk S","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":705.02},"width":29.555313,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":null,"textAfter":null,"comments":null,"startOffset":353,"endOffset":358,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618775Z"}],"manualChanges":[],"engines":["NER"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"22e484d101f5fe15be2f7bfaae857f0b","type":"CBI_author","value":"Nakamura","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.46393,"y":716.42},"width":42.592987,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"C, Bloom A, ","textAfter":" F, Ahmed","comments":null,"startOffset":332,"endOffset":340,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618775Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b4316d8e673d7a06127f7730622725de","type":"CBI_author","value":"Margolin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":216.15933,"y":705.02},"width":38.12091,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"S, Rimpo J, ","textAfter":" B, Resnick","comments":null,"startOffset":369,"endOffset":377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618775Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b1e58deafebe606f7d98052c471fa94","type":"CBI_author","value":"Brown","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":287.9799,"y":716.42},"width":28.151001,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"C, Colman S, ","textAfter":" B, Cannon","comments":null,"startOffset":304,"endOffset":309,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618776Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8a9e2264be39f56b9314b54ee0f62e64"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1865b55e74b8149433c16dede0001aa8","type":"PII","value":"16-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test compound concentrations used:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":435.55,"y":63.400024},"width":26.520996,"height":10.0905,"page":552}],"sectionNumber":5697,"textBefore":null,"textAfter":null,"comments":null,"startOffset":50,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618776Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787255Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"35b7e89069c2a730e09f84e7375ce6be","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":371.1926,"y":547.55},"width":36.97934,"height":11.017679,"page":552}],"sectionNumber":5680,"textBefore":"homogenate (from male ","textAfter":"-Dawley rats, induced","comments":null,"startOffset":100,"endOffset":107,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618776Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a467f881d5d9de97d58d4173bf81109a","type":"PII","value":"50-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test compound concentrations used:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":435.55,"y":107.94},"width":26.520996,"height":10.0905,"page":552}],"sectionNumber":5694,"textBefore":null,"textAfter":null,"comments":null,"startOffset":45,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618776Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787255Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b904a5cd3862791c2c870747316411a9","type":"PII","value":"50-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test compound concentrations used:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":435.55,"y":93.064026},"width":26.520996,"height":10.0905,"page":552}],"sectionNumber":5695,"textBefore":null,"textAfter":null,"comments":null,"startOffset":46,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618776Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787256Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2058eaf89c56f4934b6ef0c8ef2d19d6","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":251.09938,"y":71.67999},"width":43.802048,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"in detail (","textAfter":" et al.,","comments":null,"startOffset":3486,"endOffset":3494,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f1d3dbe80e6c9227e257c0cebf5633d","type":"PII","value":"(20-40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.39566,"y":398.49},"width":30.464325,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"give a small ","textAfter":" %) increase","comments":null,"startOffset":1838,"endOffset":1844,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787256Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a36afec433928e0915b351c9ac4cc9b3","type":"CBI_author","value":"Wolff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":461.75},"width":27.341446,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"Wolff (Perry and ","textAfter":", 1974) as","comments":null,"startOffset":1250,"endOffset":1255,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c24bd775dc784222109439a43ad475b","type":"CBI_author","value":"Goto","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.45169,"y":461.75},"width":23.15158,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"et a1 (","textAfter":" et a1.,","comments":null,"startOffset":1289,"endOffset":1293,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"efd25d4403a86303e3bbad7fe4823bfd","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":490.3253,"y":385.89},"width":41.90323,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"in SCEs (","textAfter":" and Resnick,","comments":null,"startOffset":1953,"endOffset":1961,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cc4c209ce40da2200922a0a73f549c4d","type":"PII","value":"25-26","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":471.6373,"y":600.98},"width":26.86267,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"with BrdUrd was ","textAfter":" h, with","comments":null,"startOffset":335,"endOffset":340,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787256Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"19ce0c0636f68203c4788ea51d56a757","type":"CBI_author","value":"Perry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":487.6425,"y":474.47},"width":24.857452,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"and Wolff (","textAfter":" and Wolff,","comments":null,"startOffset":1240,"endOffset":1245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618777Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f5b126ae9b70922c395ed19b6ae86a6d","type":"CBI_author","value":"Wolff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.71658,"y":474.47},"width":27.231018,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"of Perry and ","textAfter":" (Perry and","comments":null,"startOffset":1233,"endOffset":1238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618778Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69343124b5aeb1c9f6f29037d92006fe","type":"CBI_author","value":"Goto","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":191.30688,"y":461.75},"width":23.06897,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"as adapted by ","textAfter":" et a1","comments":null,"startOffset":1277,"endOffset":1281,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618778Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e5c3bfb2c0319f1ca4b9b8fda4b06b9","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":372.93683,"y":71.67999},"width":41.9032,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"al., 1985 and ","textAfter":" et al.,","comments":null,"startOffset":3512,"endOffset":3520,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618778Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0eb50bdfbc464a99d2713751c678ee40","type":"CBI_author","value":"Perry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":405.99066,"y":474.47},"width":24.74704,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":"the method of ","textAfter":" and Wolff","comments":null,"startOffset":1223,"endOffset":1228,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618778Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"458df3e9900db3e170bf65af0d06af4d","type":"CBI_author","value":"Resnick","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":83.17007,"y":373.29},"width":36.48256,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1966,"endOffset":1973,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618778Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"662a198061c3b779be9f6f9a1653e490","type":"CBI_author","value":"Rimpo J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":176.09373,"y":108.29999},"width":38.160645,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1670,"endOffset":1677,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618778Z"}],"manualChanges":[],"engines":["NER"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e472a0ae0ac8faf045e4c5dc047e6212","type":"CBI_author","value":"Wolff","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":118.52015,"y":184.26001},"width":27.231026,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"Perry P and ","textAfter":" S (1974).","comments":null,"startOffset":1383,"endOffset":1388,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4bb3433fcb7322399aedbbb16001715","type":"PII","value":"156-158","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":83.77727,"y":171.53998},"width":37.48272,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"chromatids. Nature 251:","textAfter":". Margolin B","comments":null,"startOffset":1480,"endOffset":1487,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787257Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0557bd2d945ab441ff5af9797b8dd6d3","type":"CBI_author","value":"Archer","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":219.37053,"y":108.29999},"width":31.525604,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"M, Rimpo J, ","textAfter":" P, Galloway","comments":null,"startOffset":1679,"endOffset":1685,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7bd1fcc4169a7c6778bad4b23ede3921","type":"CBI_author","value":"Margolin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":108.29999},"width":42.013596,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"Mutagen 7(suppl 3):48. ","textAfter":" B, Resnick","comments":null,"startOffset":1647,"endOffset":1655,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4619de2c80b55de0635824ff182329d6","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":112.42608,"y":601.7},"width":42.01362,"height":11.017679,"page":554}],"sectionNumber":5707,"textBefore":"by Margolin (","textAfter":" et al.","comments":null,"startOffset":4307,"endOffset":4315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad3ba778ebce36aaefefe355c4311d13","type":"CBI_author","value":"Galloway","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":265.35226,"y":108.29999},"width":43.802063,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"J, Archer P, ","textAfter":" S, Bloom","comments":null,"startOffset":1689,"endOffset":1697,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dac294b23191e4b35a4e536dfa2361ac","type":"PII","value":"705-715","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":381.85968,"y":57.76001},"width":37.6503,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"Environ Mutagen 5:","textAfter":". Goto K,","comments":null,"startOffset":2006,"endOffset":2013,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618779Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787257Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db653f8d21803e5478c490c659dda067","type":"CBI_author","value":"Armitage","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.84287,"y":690.26},"width":42.36689,"height":11.017679,"page":554}],"sectionNumber":5707,"textBefore":"was used (","textAfter":", 1955). For","comments":null,"startOffset":3800,"endOffset":3808,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61878Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1307ad8af2b82ea73a561ca2317bf3c8","type":"published_information","value":"Nature","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":501.647,"y":184.26001},"width":30.841034,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1469,"endOffset":1475,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61878Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce96038d7be02fadfa3fe6d12e25a5e2","type":"CBI_author","value":"Margolin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":70.359985},"width":42.013596,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"Environ Mutagen 8:183-204. ","textAfter":" B, Collings","comments":null,"startOffset":1842,"endOffset":1850,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61878Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4af72fb5a2c93a7bfc3d6d32bfcf0925","type":"CBI_author","value":"Zeiger","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":370.38684,"y":108.29999},"width":29.604675,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"S, Bloom A, ","textAfter":" E (1986).","comments":null,"startOffset":1710,"endOffset":1716,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61878Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"79973a9600c7f1998d68616921e6dd6b","type":"CBI_author","value":"Resnick M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":137.95055,"y":146.34003},"width":49.43248,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1504,"endOffset":1513,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61878Z"}],"manualChanges":[],"engines":["NER"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8898827bd1e8e13f63c6946380e990d","type":"CBI_author","value":"Resnick M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":121.64447,"y":108.29999},"width":49.43248,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1659,"endOffset":1668,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61878Z"}],"manualChanges":[],"engines":["NER"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9f824e0a2d11c893e6205a5b7dd9b828","type":"CBI_author","value":"Galloway","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":298.45013,"y":677.66},"width":43.69168,"height":11.017679,"page":554}],"sectionNumber":5707,"textBefore":"considered significant (","textAfter":" et al,","comments":null,"startOffset":3950,"endOffset":3958,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1771e9b5240edda984e899f60668c406","type":"PII","value":"183-204","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":443.09625,"y":95.70398},"width":37.883728,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"Environ Mutagen 8:","textAfter":". Margolin B,","comments":null,"startOffset":1833,"endOffset":1840,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787258Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31d06d5dbec0469a66e63b810fc525a6","type":"CBI_author","value":"Margolin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":601.7},"width":42.013596,"height":11.017679,"page":554}],"sectionNumber":5707,"textBefore":"that described by ","textAfter":" (Margolin et","comments":null,"startOffset":4297,"endOffset":4305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0450366535031dd9113889f29b737ae0","type":"CBI_author","value":"Bloom","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":323.38956,"y":108.29999},"width":31.06189,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"P, Galloway S, ","textAfter":" A, Zeiger","comments":null,"startOffset":1701,"endOffset":1706,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"12238df64fbcf2fc3aff0448b28e66e3","type":"PII","value":"16-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":307.21976,"y":374.01},"width":32.13022,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"µg/mL (-S9) and ","textAfter":" µg/mL (+S9),","comments":null,"startOffset":623,"endOffset":629,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787258Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2a3bede982dd8117b53602f5679a0b07","type":"CBI_author","value":"Collings B","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":128.136,"y":70.359985},"width":52.137283,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1854,"endOffset":1864,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"}],"manualChanges":[],"engines":["NER"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"093dd81f3a4fb5a559f37a206b80b024","type":"PII","value":"50-500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.14737,"y":424.55},"width":32.14264,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"concentration range of ","textAfter":" µg/mL, 2,4,6-TCP","comments":null,"startOffset":422,"endOffset":428,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618781Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787258Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5a38afefa5c70dc4d269c93f3c5da58a","type":"CBI_author","value":"Mason","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":188.33711,"y":70.359985},"width":31.084015,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"B, Collings B, ","textAfter":" J (1983).","comments":null,"startOffset":1866,"endOffset":1871,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"deaf8b5d71ddb12bfe3088e9866128eb","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":196.62},"width":74.9128,"height":10.929359,"page":554}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1359,"endOffset":1369,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2845b71c66f36bb1be8cdd8347237354","type":"CBI_author","value":"Margolin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":146.34003},"width":42.013596,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"chromatids. Nature 251:156-158. ","textAfter":" B and","comments":null,"startOffset":1489,"endOffset":1497,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"498b043abea701723ec86da9c57a0c4e","type":"CBI_author","value":"Perry","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":184.26001},"width":24.978882,"height":11.017679,"page":554}],"sectionNumber":5710,"textBefore":"assays described. REFERENCES: ","textAfter":" P and","comments":null,"startOffset":1371,"endOffset":1376,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dfce3c67f1966d27f48b2f1ee8e7e191","type":"CBI_author","value":"Archer","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":338.90363,"y":702.86},"width":31.647064,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"B, Nakamura F, ","textAfter":" P, Zeiger","comments":null,"startOffset":2209,"endOffset":2215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99690ebeab61b21177a6a432caa39282","type":"CBI_author","value":"Sugiyama","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":188.31505,"y":740.9},"width":44.884018,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"S, Kano Y, ","textAfter":" T (1978).","comments":null,"startOffset":2040,"endOffset":2048,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6902695dd1479512bb6523e9de7a639b","type":"CBI_author","value":"Bloom","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":121.53407,"y":702.86},"width":31.061935,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"66:351-359. Galloway S, ","textAfter":" A, Resnick","comments":null,"startOffset":2165,"endOffset":2170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed780567fdafae07c859eb0370c40fff","type":"CBI_author","value":"Goto","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":740.9},"width":23.068954,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"Environ Mutagen 5:705-715. ","textAfter":" K, Maeda","comments":null,"startOffset":2015,"endOffset":2019,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618782Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6a1f6fa723289bed93daa51004ba660e","type":"CBI_author","value":"Zeiger","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":384.2008,"y":702.86},"width":29.604675,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"F, Archer P, ","textAfter":" E (1985).","comments":null,"startOffset":2219,"endOffset":2225,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"acdf8b90b1c113d559005dec1bb8b5af","type":"CBI_author","value":"Hayashi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.75,"y":588.86},"width":33.628998,"height":10.526819,"page":555}],"sectionNumber":5708,"textBefore":"Published: Matsuoka A, ","textAfter":" M, Sofuni","comments":null,"startOffset":255,"endOffset":262,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d022336e8a43e3c2d486765595df3619","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (99.9%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":475.91},"width":82.55249,"height":11.017679,"page":555}],"sectionNumber":5711,"textBefore":null,"textAfter":null,"comments":null,"startOffset":87,"endOffset":104,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f4e02db8ccb4cccf15d72a28342a9a1e","type":"CBI_author","value":"Matsuoka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":313.80722,"y":588.86},"width":40.312195,"height":10.526819,"page":555}],"sectionNumber":5708,"textBefore":"July 1998. Published: ","textAfter":" A, Hayashi","comments":null,"startOffset":243,"endOffset":251,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5162fb837bb29bea604874e05affb907","type":"CBI_author","value":"Sofuni","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":422.18344,"y":588.86},"width":27.61316,"height":10.526819,"page":555}],"sectionNumber":5708,"textBefore":"A, Hayashi M, ","textAfter":" T (1998).","comments":null,"startOffset":266,"endOffset":272,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f872785aac68131360f8f4a0abf8b381","type":"CBI_author","value":"Kano","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":147.7872,"y":740.9},"width":24.8685,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"K, Maeda S, ","textAfter":" Y, Sugiyama","comments":null,"startOffset":2032,"endOffset":2036,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0fba0c904198e024bed8222c91b1ef6d","type":"CBI_author","value":"Galloway","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":421.25943,"y":652.34},"width":43.802063,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"Mutagen 7:1-51. (","textAfter":" S, et","comments":null,"startOffset":2423,"endOffset":2431,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618783Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e39042248cbe6c3ef8e2284cc221f5b5","type":"PII","value":"159-165","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":289.19604,"y":565.79},"width":34.57361,"height":10.526819,"page":555}],"sectionNumber":5708,"textBefore":"Mutagen Res., 20:","textAfter":". Syngenta File","comments":null,"startOffset":423,"endOffset":430,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78726Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"27ad204f0d66ef01f3c0e92956a233ba","type":"CBI_author","value":"Margolin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":221.66685,"y":702.86},"width":41.903183,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"A, Resnick M, ","textAfter":" B, Nakamura","comments":null,"startOffset":2185,"endOffset":2193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"908d4a8ff109f3c2f17193139b6dbca5","type":"CBI_author","value":"Maeda","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":102.94272,"y":740.9},"width":30.96257,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"5:705-715. Goto K, ","textAfter":" S, Kano","comments":null,"startOffset":2023,"endOffset":2028,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f4e8b0390284230483444aa47c12e425","type":"CBI_author","value":"Nakamura","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":278.57,"y":702.86},"width":46.69455,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"M, Margolin B, ","textAfter":" F, Archer","comments":null,"startOffset":2197,"endOffset":2205,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"224e5fd0a5a9996a6acc27603d463531","type":"CBI_author","value":"Galloway","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":702.86},"width":43.912476,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"chromatids. Chromosoma 66:351-359. ","textAfter":" S, Bloom","comments":null,"startOffset":2153,"endOffset":2161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1269e087afe2051ddb78c9c87f771604","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":330.23965,"y":565.79},"width":37.94171,"height":10.526819,"page":555}],"sectionNumber":5708,"textBefore":"Mutagen Res., 20:159-165. ","textAfter":" File No.","comments":null,"startOffset":432,"endOffset":440,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0074ad008669255860840087e7ef434f","type":"PII","value":"351-359","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":194.6189,"y":728.18},"width":37.671112,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":"chromatids. Chromosoma 66:","textAfter":". Galloway S,","comments":null,"startOffset":2144,"endOffset":2151,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78726Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8724116bf2427f8fcae6eb4bcea9cd7","type":"CBI_author","value":"Resnick M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":167.82478,"y":702.86},"width":49.189606,"height":11.017679,"page":555}],"sectionNumber":5710,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2174,"endOffset":2183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618784Z"}],"manualChanges":[],"engines":["NER"],"reference":["1307ad8af2b82ea73a561ca2317bf3c8"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"82b0f3e1dcaf7e090e3dec896de288da","type":"CBI_author","value":"Matsuoka A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.55646,"y":611.78},"width":53.14061,"height":10.526819,"page":555}],"sectionNumber":5708,"textBefore":"Report: K-CA 5.8.1/33 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1ee7c2751cf7e9fd72a577cd2cf34151","type":"CBI_author","value":"Matsuoka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":211.5},"width":44.40928,"height":11.017679,"page":555}],"sectionNumber":5712,"textBefore":"control data (","textAfter":", 1991). In","comments":null,"startOffset":867,"endOffset":875,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e97cf5d623629339450e8d5aec5cd45f","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":663.26},"width":28.467995,"height":10.018499,"page":556}],"sectionNumber":5713,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e85f32e0c478b1216002ced644c4a172","type":"CBI_author","value":"Matsuoka","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Metaphase analysis","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":485.05917,"y":197.70001},"width":44.276764,"height":11.017679,"page":557}],"sectionNumber":5748,"textBefore":"control data (","textAfter":", 1991). Positive","comments":null,"startOffset":903,"endOffset":911,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fff5305e78de92ef46518a0422b6c1de","type":"CBI_author","value":"Juhl U.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.1222,"y":534.71},"width":29.754517,"height":10.526819,"page":558}],"sectionNumber":5749,"textBefore":"Report: K-CA 5.8.1/34 ","textAfter":" (1989). The","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf46c04d250372297b8831881945aece","type":"PII","value":"333-344","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":486.4427,"y":500.27},"width":34.536926,"height":10.526819,"page":558}],"sectionNumber":5749,"textBefore":"Chem-Biol Interactions 69:","textAfter":". Syngenta File","comments":null,"startOffset":362,"endOffset":369,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787261Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"59c153ee040b5ac8dc5226cab3959323","type":"CBI_author","value":"Miyata N","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.15535,"y":601.7},"width":44.696335,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":null,"textAfter":null,"comments":null,"startOffset":550,"endOffset":558,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618785Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0875047072c90121ba1f63d2de7814a1","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: REPORTED RESULTS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":488.75},"width":38.051224,"height":10.526819,"page":558}],"sectionNumber":5749,"textBefore":"Chem-Biol Interactions 69:333-344. ","textAfter":" File No.","comments":null,"startOffset":371,"endOffset":379,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"503a4887fc036977bace1a16ca374a1b","type":"PII","value":"103-110","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":441.58377,"y":589.1},"width":37.83618,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":"Mutat. Res., 259, ","textAfter":". (Matsuoka A","comments":null,"startOffset":713,"endOffset":720,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787261Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d133e07ecfb27064654364e4a1de5f7f","type":"CBI_author","value":"Juhl","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":227.42409,"y":511.78998},"width":17.563477,"height":10.526819,"page":558}],"sectionNumber":5749,"textBefore":"Oldenburg (F.R.G.). Published: ","textAfter":" U, Blum","comments":null,"startOffset":211,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c39d6b16092867aca94f27cb8379312","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":614.18},"width":74.9128,"height":10.929359,"page":558}],"sectionNumber":5751,"textBefore":null,"textAfter":null,"comments":null,"startOffset":516,"endOffset":526,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e79aaca42f38a344166ba7618d8f3be","type":"CBI_author","value":"Ishidate","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.10495,"y":601.7},"width":35.764954,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":"T, Miyata N, ","textAfter":" M (1991).","comments":null,"startOffset":560,"endOffset":568,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"41a5e79ecc66d26ec5cd2c40192786bc","type":"CBI_author","value":"Witte","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":306.1778,"y":511.78998},"width":23.200897,"height":10.526819,"page":558}],"sectionNumber":5749,"textBefore":"U, Blum K, ","textAfter":" I (1989).","comments":null,"startOffset":227,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ff25d4e132141f3eef6a4b8fef76bd3","type":"CBI_author","value":"Sofuni","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":127.30801,"y":601.7},"width":30.344322,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":"REFERENCES: Matsuoka A, ","textAfter":" T, Miyata","comments":null,"startOffset":540,"endOffset":546,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b32f8f0bcd8b354af1aa5ddade63060","type":"CBI_author","value":"Matsuoka A","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":601.7},"width":56.95072,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":null,"textAfter":null,"comments":null,"startOffset":528,"endOffset":538,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"152c30b8fe92170a97dec61aba08bf7c","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REPORTED RESULTS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":409.65},"width":82.55249,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":null,"textAfter":null,"comments":null,"startOffset":943,"endOffset":960,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618786Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b353ddb6f88d9df2e0003a8f37a266b","type":"CBI_author","value":"Matsuoka A","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":424.37946,"y":563.75},"width":55.140167,"height":11.017679,"page":558}],"sectionNumber":5751,"textBefore":null,"textAfter":null,"comments":null,"startOffset":723,"endOffset":733,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618787Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"050307704afea9aeae75c9e323f8764b","type":"CBI_author","value":"Blum","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":264.10675,"y":511.78998},"width":23.25064,"height":10.526819,"page":558}],"sectionNumber":5749,"textBefore":"Published: Juhl U, ","textAfter":" K, Witte","comments":null,"startOffset":219,"endOffset":223,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618787Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"861909870ca51a783b9903a8678877cf","type":"CBI_address","value":"Organon","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Mammalian metabolic system: S9 derived","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":343.02704,"y":424.43},"width":39.485413,"height":11.017679,"page":559}],"sectionNumber":5761,"textBefore":"were purchased from ","textAfter":" Technika (Freiburg,","comments":null,"startOffset":150,"endOffset":157,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618787Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9967ca3a12019f077dea268440c4dc5c","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":182.85025,"y":399.09},"width":26.623856,"height":11.017679,"page":559}],"sectionNumber":5761,"textBefore":"the method of ","textAfter":" (Ames et","comments":null,"startOffset":311,"endOffset":315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618787Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8cf10ab740f107e8c9764c2e0e2e9a18","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Mammalian metabolic system: S9 derived","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":214.97667,"y":399.09},"width":26.513443,"height":11.017679,"page":559}],"sectionNumber":5761,"textBefore":"of Ames (","textAfter":" et al,","comments":null,"startOffset":317,"endOffset":321,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618787Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c0c144e86f8f42d290cb60afcbddfaf","type":"CBI_author","value":"Joyce","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Measurement of DNA strand breakage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":321.5873,"y":627.02},"width":26.038696,"height":11.017679,"page":560}],"sectionNumber":5763,"textBefore":"scanned with a ","textAfter":" Loeble Chromoscan,","comments":null,"startOffset":1081,"endOffset":1086,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618787Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ce4fcf02061503d870f1188503d8664","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":178.77943,"y":577.31},"width":31.039337,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":"27711, USA. Published: ","textAfter":" K and","comments":null,"startOffset":283,"endOffset":290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["b9a428310d34da455d727de6a31f7416"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5aa2555efd0c05f95e8ae24a00f228ef","type":"CBI_author","value":"Brown","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":238.95775,"y":577.31},"width":28.150986,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":"Kitchin K and ","textAfter":" J (1988).","comments":null,"startOffset":297,"endOffset":302,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["b9a428310d34da455d727de6a31f7416"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0cf5f566d4847d54bae151d1270c8235","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":200.44485,"y":611.78},"width":30.929764,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":"Report: K-CA 5.8.1/35 ","textAfter":" K. and","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["b9a428310d34da455d727de6a31f7416"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a81b2506ae05fd214b6b30ded5618a44","type":"CBI_author","value":"Juhl U","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":446.61905,"y":652.34},"width":30.189758,"height":11.017679,"page":561}],"sectionNumber":5766,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3186,"endOffset":3192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b9a428310d34da455d727de6a31f7416","type":"published_information","value":"Toxicological and Environmental Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":185.85104,"y":565.79},"width":193.02899,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":null,"textAfter":null,"comments":null,"startOffset":376,"endOffset":417,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d652ba901153832d342e1efb86688fb9","type":"CBI_author","value":"McCann","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":107.25936,"y":690.26},"width":38.91137,"height":11.017679,"page":561}],"sectionNumber":5766,"textBefore":"REFERENCES: Ames B, ","textAfter":" J and","comments":null,"startOffset":3022,"endOffset":3028,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ade608f4b57dc8c1d444def649ffd9d","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (98%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.22278,"y":464.39},"width":82.55249,"height":11.017679,"page":561}],"sectionNumber":5767,"textBefore":null,"textAfter":null,"comments":null,"startOffset":85,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618788Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"acf3707ee39d6e6935a01b95629849e6","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":440.90097,"y":565.79},"width":37.94171,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":"Environmental Chemistry 16:165-172. ","textAfter":" File No.","comments":null,"startOffset":430,"endOffset":438,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618789Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["b9a428310d34da455d727de6a31f7416"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e66594dfba90dc50c09b723580548329","type":"CBI_author","value":"Yamasaki","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.44705,"y":690.26},"width":44.75154,"height":11.017679,"page":561}],"sectionNumber":5766,"textBefore":"McCann J and ","textAfter":" E (1975).","comments":null,"startOffset":3035,"endOffset":3043,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618789Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"deb74db8584bb41db772fed9e7323ebb","type":"PII","value":"165-172","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":397.60086,"y":565.79},"width":34.668793,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":"Environmental Chemistry 16:","textAfter":". Syngenta File","comments":null,"startOffset":421,"endOffset":428,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618789Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787263Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"64008257b103a1337bc07847090e920d","type":"CBI_author","value":"Brown J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":268.54138,"y":611.78},"width":39.32611,"height":10.526819,"page":561}],"sectionNumber":5764,"textBefore":"Kitchin K. and ","textAfter":" (1988). Biochemical","comments":null,"startOffset":37,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618789Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["b9a428310d34da455d727de6a31f7416"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"54a895c8e626dd8a796c152524191584","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":702.62},"width":74.9128,"height":10.929359,"page":561}],"sectionNumber":5766,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3002,"endOffset":3012,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618789Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2246f752182b137860557b6a10802dcc","type":"PII","value":"347-364","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.4164,"y":677.66},"width":37.77356,"height":11.017679,"page":561}],"sectionNumber":5766,"textBefore":"Mutat. Res., 31:","textAfter":". (Juhl U","comments":null,"startOffset":3176,"endOffset":3183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618789Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787263Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"06c453b722769b784607bd0a7ae4470f","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":690.26},"width":26.62384,"height":11.017679,"page":561}],"sectionNumber":5766,"textBefore":"DNA damage. REFERENCES: ","textAfter":" B, McCann","comments":null,"startOffset":3014,"endOffset":3018,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f8bcb1aa7e4af4b5171b0dc74da4d238","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":663.26},"width":28.467995,"height":10.018499,"page":562}],"sectionNumber":5769,"textBefore":null,"textAfter":null,"comments":null,"startOffset":102,"endOffset":109,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d8ffdf8f9cd8fd5dfd23157dff745c0","type":"CBI_author","value":"Potter","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.16143,"y":154.97998},"width":27.352486,"height":11.017679,"page":562}],"sectionNumber":5772,"textBefore":"a size C ","textAfter":"-Elvehjem homogenizer (clearance","comments":null,"startOffset":836,"endOffset":842,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c3cc5b7364507f0ad608dede8825be6","type":"CBI_address","value":"Charles River Laboratories","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.65,"y":483.23},"width":98.42502,"height":10.0905,"page":562}],"sectionNumber":5770,"textBefore":null,"textAfter":null,"comments":null,"startOffset":91,"endOffset":117,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b2e8a1c576bd77b37c22028bb04ee2b","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.65,"y":508.91},"width":30.528992,"height":10.09053,"page":562}],"sectionNumber":5770,"textBefore":null,"textAfter":"-Dawley","comments":null,"startOffset":35,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d41dc9b001d099271f2f99504f9e9395","type":"CBI_author","value":"Becker","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.20158,"y":753.5},"width":32.0224,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"The Stout and ","textAfter":" (Stout and","comments":null,"startOffset":26,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dcbf0b359e3e9889fd20a1b74249f51f","type":"CBI_author","value":"Ewig R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":111.56495,"y":88.50397},"width":37.619667,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1162,"endOffset":1168,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8be36a1a7ce9ebe47d4da4feafbc593a","type":"PII","value":"43 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-47: Results of 2,4,6-TCP exposure on DNA damage in blood and liver and markers of\nhepatotoxicity","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.53598,"y":295.05},"width":9.937012,"height":10.0905,"page":563},{"topLeft":{"x":445.66,"y":295.05},"width":10.053986,"height":10.0905,"page":563}],"sectionNumber":5776,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787265Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"98502072403661e3fd4713557b4a6bf0","type":"CBI_author","value":"Kohn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":419.52576,"y":753.5},"width":25.58606,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"the Kohn (","textAfter":" et al,","comments":null,"startOffset":84,"endOffset":88,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"345157bc261e3b4886ce848cd179acaf","type":"CBI_author","value":"Marcel","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":308.0991,"y":75.76001},"width":32.243225,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":"Friedberg, eds.) (","textAfter":"-Dekker, New York,","comments":null,"startOffset":1296,"endOffset":1302,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6f5f8fae80a03961c808611bf99731c1","type":"CBI_author","value":"Hissin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":489.44797,"y":639.62},"width":29.074738,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":null,"textAfter":null,"comments":null,"startOffset":755,"endOffset":761,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2d5381a5b5fa0895d4e9096853db2c0b","type":"CBI_author","value":"Hanawalt and E. C. Friedberg","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":143.98941,"y":75.76001},"width":132.36496,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1259,"endOffset":1287,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"150aad31d2a9d70e2043df2d6431911c","type":"CBI_author","value":"Nebert","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":216.6106,"y":639.62},"width":30.929459,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":null,"textAfter":null,"comments":null,"startOffset":693,"endOffset":699,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618791Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7573269a72eee7cbe2aec21671cc967c","type":"PII","value":"45 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-47: Results of 2,4,6-TCP exposure on DNA damage in blood and liver and markers of\nhepatotoxicity","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.53598,"y":322.28998},"width":9.937012,"height":10.0905,"page":563},{"topLeft":{"x":445.66,"y":322.28998},"width":10.053986,"height":10.0905,"page":563}],"sectionNumber":5775,"textBefore":null,"textAfter":null,"comments":null,"startOffset":69,"endOffset":74,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787265Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6b64775a4ff69db91c233e95a42452e0","type":"CBI_author","value":"Nicolini","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":112.16113,"y":728.18},"width":37.056656,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"SDSlysis step (","textAfter":" et. al","comments":null,"startOffset":221,"endOffset":229,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24168a81ae52cc0036f1f87d1a9964cc","type":"CBI_author","value":"Erickson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":157.00557,"y":88.50397},"width":40.20305,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":"K, Ewig R, ","textAfter":" L and","comments":null,"startOffset":1170,"endOffset":1178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"14b8798933bf7a9887e2ffd0732e9dc4","type":"PII","value":"379-401","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":480.26828,"y":75.76001},"width":37.671722,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":"York, 1981), pp. ","textAfter":". Stout D","comments":null,"startOffset":1332,"endOffset":1339,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787266Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eaa68107025d68eacde4d8882becdbdd","type":"CBI_author","value":"Stout","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":174.90143,"y":753.5},"width":24.106735,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"and Becker (","textAfter":" and Becker,","comments":null,"startOffset":34,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eacda2e64c4fd635f1dbbad89448b6ca","type":"CBI_author","value":"Kohn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.54926,"y":753.5},"width":25.46463,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"modification of the ","textAfter":" (Kohn et","comments":null,"startOffset":78,"endOffset":82,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3b588c6e7ff93e9f735b9339923e8baa","type":"CBI_address","value":"New York","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":380.94138,"y":75.76001},"width":47.18033,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":"Friedberg, eds.) (Marcel-Dekker, ","textAfter":", 1981), pp.","comments":null,"startOffset":1311,"endOffset":1319,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3577fbe88e02ef04609e934408ba718b","type":"CBI_author","value":"Stout","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":86.283356,"y":753.5},"width":24.09568,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"DNA elution The ","textAfter":" and Becker","comments":null,"startOffset":16,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de12063a5fd9b7b3db2a13522a76724c","type":"CBI_author","value":"Kohn","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":88.50397},"width":25.586067,"height":11.017679,"page":563}],"sectionNumber":5780,"textBefore":"significantly increased REFERENCES: ","textAfter":" K, Ewig","comments":null,"startOffset":1154,"endOffset":1158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618792Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d8ad993663413d4f8de2453625142aa2","type":"CBI_author","value":"Cohn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.2148,"y":639.62},"width":24.879486,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"glutathione content (","textAfter":" et. al,","comments":null,"startOffset":736,"endOffset":740,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3f62f465477140b0c428aa95f9da72da","type":"CBI_author","value":"Becker","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.83072,"y":753.5},"width":32.00032,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"Becker (Stout and ","textAfter":", 1982) modification","comments":null,"startOffset":44,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e28e700cace511da5280b86efa2b2458","type":"CBI_author","value":"Omura","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.2973,"y":627.02},"width":31.448334,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"P-450 content (","textAfter":" et al.,","comments":null,"startOffset":803,"endOffset":808,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1ea5cc39f80759bcd91e0d678d3a55c","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":100.859985},"width":74.9128,"height":10.929359,"page":563}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1142,"endOffset":1152,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"913915e4956e84c3c2548b0acaf310b5","type":"CBI_author","value":"Plaa","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":101.49648,"y":614.42},"width":19.812157,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":null,"textAfter":null,"comments":null,"startOffset":875,"endOffset":879,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cdd2ce562e0247ba83ae86964071532d","type":"PII","value":"193 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"DNA elution","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":316.65506,"y":589.1},"width":36.868927,"height":11.017679,"page":563}],"sectionNumber":5773,"textBefore":"was spun at ","textAfter":" g for","comments":null,"startOffset":1111,"endOffset":1118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787266Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9555d776e4a8494e3d2b49ef0d9a0b6e","type":"PII","value":"157-183","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":486.40973,"y":354.81},"width":34.44989,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"Mutation Research 343:","textAfter":". Syngenta File","comments":null,"startOffset":688,"endOffset":695,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787267Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d456ee5ee6f2bbc1bea9e0dec8417d0d","type":"CBI_author","value":"Sato","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":128.24638,"y":563.75},"width":20.55185,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Omura T and ","textAfter":" R (1964).","comments":null,"startOffset":2208,"endOffset":2212,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"628a9863e3bd06651e05bb1130c4b7a5","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.27914,"y":253.40997},"width":82.55249,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2703,"endOffset":2720,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618793Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"09fb8f1a723a442879016a46b28fdc0e","type":"published_information","value":"Press","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":481.53088,"y":525.83},"width":24.22818,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2444,"endOffset":2449,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b87b3c8ad8d146e0d08f94c55839283a","type":"CBI_author","value":"Plaa G","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":525.83},"width":31.393127,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2356,"endOffset":2362,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62c2cabfdaa520d09f58c865b60739b8","type":"PII","value":"214-226","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":234.89285,"y":589.1},"width":37.717133,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Analytical Biochemistry 74:","textAfter":". Omura T","comments":null,"startOffset":2187,"endOffset":2194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787267Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db2b2884c1d993451a2ab7d1699f9d96","type":"CBI_author","value":"Cohn","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":627.02},"width":24.879509,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Biol. Chem. 255:6836-6842. ","textAfter":" V and","comments":null,"startOffset":1944,"endOffset":1948,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2fd2fb753ec8ab8feaaff8febce67c1d","type":"CBI_author","value":"Pino A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":176.09375,"y":715.58},"width":32.47505,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1539,"endOffset":1545,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"34cc35f8e8771d575527147b95b6567c","type":"CBI_author","value":"Yoshikawa","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":377.85},"width":45.839905,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"T, Uno Y, ","textAfter":" K, (1995).","comments":null,"startOffset":443,"endOffset":452,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a0a23b9064a69e96cbba139c1f30c80b","type":"CBI_author","value":"Uno Y","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":490.15216,"y":389.37},"width":30.37207,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":null,"textAfter":null,"comments":null,"startOffset":436,"endOffset":441,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["NER"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ecd88ecb09da55b39b2772119870ebfd","type":"PII","value":"407-445","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.91566,"y":513.11},"width":37.624344,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"York, 1982), pp. ","textAfter":". (Kitchin K","comments":null,"startOffset":2472,"endOffset":2479,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787267Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"59b1757af8a0cfbf3ac703d12ecb0538","type":"CBI_author","value":"Ames","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":197.71341,"y":354.81},"width":24.176926,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"putative nongenotoxic (","textAfter":"-negative) mouse hepatocarcinogens.","comments":null,"startOffset":626,"endOffset":630,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618794Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cb631c53924a7335f5c78144453e6bc9","type":"CBI_author","value":"Oka T","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":215.14226,"y":664.94},"width":29.692963,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1780,"endOffset":1785,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"df96d41acf4e07488b6f4d583285bf8f","type":"CBI_address","value":"New York","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":510.90836,"y":525.83},"width":21.7883,"height":11.017679,"page":564},{"topLeft":{"x":64.104,"y":513.11},"width":23.665115,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"ed.) (Raven Press, ","textAfter":", 1982), pp.","comments":null,"startOffset":2451,"endOffset":2459,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"624ba4d11121ebe4b285ba5dec2aaadf","type":"CBI_author","value":"Hilf R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":122.98031,"y":601.7},"width":28.864952,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2057,"endOffset":2063,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c80b1d01fb91c025cbdd3e5436b27c76","type":"CBI_author","value":"Robbiano L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":116.963524,"y":715.58},"width":54.047203,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1527,"endOffset":1537,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ce3567a393309ca9b30ad47a03b59fc1","type":"CBI_author","value":"Hewitt","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":117.09601,"y":525.83},"width":30.94049,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Plaa G and ","textAfter":" W. In:","comments":null,"startOffset":2367,"endOffset":2373,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b221e1813f77bf5e8a8efce2d87edec0","type":"CBI_author","value":"Miyagawa M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.61816,"y":435.35},"width":58.787933,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"Report: K-CA 5.8.1/36 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9b07862d1d1c0cdcf42d80aa72f111ce","type":"CBI_author","value":"Lyle","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":120.1099,"y":627.02},"width":21.148003,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Cohn V and ","textAfter":" J (1966).","comments":null,"startOffset":1955,"endOffset":1959,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3968477c5f9f9949a0d4ad4bdd79ad7","type":"PII","value":"302-307","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.15567,"y":740.9},"width":37.79431,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Analytical Biochemistry 127:","textAfter":". Nicolini C,","comments":null,"startOffset":1506,"endOffset":1513,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787268Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c5f58a507c2956c22f7af6319591e7fb","type":"CBI_author","value":"Perry","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":159.7656,"y":664.94},"width":24.978897,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"D, Jensen N, ","textAfter":" J and","comments":null,"startOffset":1768,"endOffset":1773,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"54bdee4395ce02991a6402f58005fa32","type":"CBI_author","value":"Miyagawa","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":216.4083,"y":389.37},"width":43.190582,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"227, Japan. Published: ","textAfter":" M, Takasawa","comments":null,"startOffset":381,"endOffset":389,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618795Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ee7b4abc21680c020a3434b230e6dea","type":"CBI_author","value":"Omura","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":563.75},"width":31.558708,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Analytical Biochemistry 74:214-226. ","textAfter":" T and","comments":null,"startOffset":2196,"endOffset":2201,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6cc560cefd3c84be4510b934dd2cd3ee","type":"CBI_author","value":"Hayes","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":392.1015,"y":525.83},"width":28.5448,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Toxicology (A. W. ","textAfter":", ed.) (Raven","comments":null,"startOffset":2425,"endOffset":2430,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"441004caa53e5d048ec02418b650b8cd","type":"CBI_address","value":"Mitsubishi Chemical Safety Institute Ltd.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":400.89},"width":167.97949,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"Hepatocarcinogens. Yokohama Laboratory, ","textAfter":", 1000, and","comments":null,"startOffset":272,"endOffset":313,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10852cf36e65eaec3fb19a4ce4cd3ae8","type":"CBI_author","value":"Brown","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.56235,"y":488.51},"width":30.896301,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"(Kitchin K and ","textAfter":" J, 1988)","comments":null,"startOffset":2496,"endOffset":2501,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"61d27ed33dce5853742c9c1f35b57f22","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":383.03473,"y":354.81},"width":80.47095,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":null,"textAfter":null,"comments":null,"startOffset":666,"endOffset":683,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"08890260164cf87bd16d3e51225655bd","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":398.45944,"y":488.51},"width":34.0979,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"pp. 407-445. (","textAfter":" K and","comments":null,"startOffset":2482,"endOffset":2489,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1d2b1fd506c07525d0affe570787dba","type":"CBI_author","value":"Takasawa H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":280.08255,"y":389.37},"width":53.343018,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":null,"textAfter":null,"comments":null,"startOffset":393,"endOffset":403,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["NER"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6b5e4e34fa0aa75ca8418fa982bb7dee","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":86.15088,"y":690.26},"width":68.15633,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1721,"endOffset":1735,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93b1e6c7d444b77bdc715bd5adc5003c","type":"CBI_author","value":"Nicolini","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":715.58},"width":37.0456,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Analytical Biochemistry 127:302-307. ","textAfter":" C, Robbiano","comments":null,"startOffset":1515,"endOffset":1523,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618796Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7b2c9389669d4784e5d7a47eac05120","type":"CBI_author","value":"Jensen","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":112.17216,"y":664.94},"width":30.498894,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"385-389. Nebert D, ","textAfter":" N, Perry","comments":null,"startOffset":1758,"endOffset":1764,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"36baf7d2c209824e3f5b68c836b4284b","type":"CBI_author","value":"Becker","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":120.58463,"y":753.5},"width":32.121758,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Stout D and ","textAfter":" F (1982).","comments":null,"startOffset":1353,"endOffset":1359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e0366dd2622e7afe46b41ac320fee6b1","type":"PII","value":"434-440","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":474.97968,"y":627.02},"width":37.920288,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Analytical Biochemistry 14:","textAfter":". Hissin P","comments":null,"startOffset":2035,"endOffset":2042,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787269Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9214c24844fab8c2cf1ce9400808233","type":"CBI_author","value":"Nebert D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":664.94},"width":42.653915,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1748,"endOffset":1756,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"108cbf4b6414d57a42f1fdefc7afe438","type":"PII","value":"2370-2378","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":300.84576,"y":551.15},"width":48.704193,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Biological Chemistry 239:","textAfter":". Plaa G","comments":null,"startOffset":2345,"endOffset":2354,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787269Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8fe5ff76dff46af689e1a168d58e7487","type":"CBI_author","value":"Sugiyama","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":340.09476,"y":389.37},"width":41.019318,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"M, Takasawa H, ","textAfter":" A, Inoue","comments":null,"startOffset":405,"endOffset":413,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"693a5549f8dcbc55c719a9b3cc6fa270","type":"PII","value":"6836-6842","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.21027,"y":652.34},"width":48.769684,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Biol. Chem. 255:","textAfter":". Cohn V","comments":null,"startOffset":1933,"endOffset":1942,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78727Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fe0d45cfe755fe078c19eeddb78a00dd","type":"CBI_author","value":"Murata","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":442.44376,"y":389.37},"width":29.874054,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"A, Inoue Y, ","textAfter":" T, Uno","comments":null,"startOffset":426,"endOffset":432,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618797Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf9ed98e9b2060a41240a7a8481d88fb","type":"CBI_author","value":"Maura A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.6187,"y":715.58},"width":41.218735,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1547,"endOffset":1554,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"140b8fbd8661df37411f9e6a86faf63d","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":343.41},"width":38.051224,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"Mutation Research 343:157-183. ","textAfter":" File No.","comments":null,"startOffset":697,"endOffset":705,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c4a35b576b8b2863a0270a789e7242f9","type":"CBI_author","value":"Inoue Y","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":399.90457,"y":389.37},"width":35.989532,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"H, Sugiyama A, ","textAfter":", Murata T,","comments":null,"startOffset":417,"endOffset":424,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a594d719e8adc3c4b2560f20079f0268","type":"CBI_author","value":"Stout","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":753.5},"width":24.316475,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"1981), pp. 379-401. ","textAfter":" D and","comments":null,"startOffset":1341,"endOffset":1346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9afcd2d2f9cc135afdfa00bc8aa05ba9","type":"PII","value":"385-389","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":167.37216,"y":690.26},"width":37.557846,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"rate. Carcinogenesis 6: ","textAfter":". Nebert D,","comments":null,"startOffset":1739,"endOffset":1746,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78727Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"200d183e1be860ffb26279cab90b2a07","type":"CBI_author","value":"Brambilla","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":325.00125,"y":715.58},"width":45.005432,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":"Finollo R and ","textAfter":" G (1985).","comments":null,"startOffset":1570,"endOffset":1579,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b1ccbc821faf77cc4d9d47c2e0482d9","type":"CBI_author","value":"Ames","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":246.84607,"y":412.29},"width":24.17694,"height":10.526819,"page":564}],"sectionNumber":5778,"textBefore":"Putative Nongenotoxic (","textAfter":"-negative) Mouse Hepatocarcinogens.","comments":null,"startOffset":211,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["61d27ed33dce5853742c9c1f35b57f22"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1a49392c3192ae0a5bf900a3e2824155","type":"CBI_author","value":"Finollo R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":259.88736,"y":715.58},"width":43.503967,"height":11.017679,"page":564}],"sectionNumber":5780,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1556,"endOffset":1565,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["NER"],"reference":["09fb8f1a723a442879016a46b28fdc0e","6b5e4e34fa0aa75ca8418fa982bb7dee"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2d4918c6f7651c60cbc26c983231c8c6","type":"CBI_address","value":"Charles River Laboratories","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":221.81,"y":386.25},"width":98.42502,"height":10.0905,"page":565}],"sectionNumber":5788,"textBefore":null,"textAfter":" (Kanagawa)","comments":null,"startOffset":77,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618798Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f78680d3d8fac4fd097831340f9357c","type":"PII","value":"40-70","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":261.01404,"y":310.64996},"width":22.092987,"height":10.0905,"page":565}],"sectionNumber":5788,"textBefore":"Temperature: 20-24°C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":274,"endOffset":279,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787271Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6d2b7310cb1f2913f3b93c0052ddd294","type":"CBI_author","value":"Uno","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Hepatocyte isolation and measurement of RDS induction","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":512.7585,"y":624.02},"width":19.83429,"height":11.017679,"page":566}],"sectionNumber":5799,"textBefore":null,"textAfter":null,"comments":null,"startOffset":153,"endOffset":156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62e9d6f1794fc7d6437c51b51027ff84","type":"CBI_author","value":"Doolittle","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Hepatocyte isolation and measurement of RDS induction","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":158.53185,"y":598.7},"width":40.203064,"height":11.017679,"page":566}],"sectionNumber":5799,"textBefore":null,"textAfter":null,"comments":null,"startOffset":283,"endOffset":292,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1114fce925a5197d4dd5f68bd9d3e5dc","type":"CBI_author","value":"Welch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Hepatocyte isolation and measurement of RDS induction","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":370.89},"width":29.770248,"height":11.017679,"page":566}],"sectionNumber":5799,"textBefore":"t-test or the ","textAfter":" test (a","comments":null,"startOffset":1828,"endOffset":1833,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"08726450b9b9c5d018fdf4d854b1daf6","type":"CBI_author","value":"Williams","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Hepatocyte isolation and measurement of RDS induction","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":450.07697,"y":497.39},"width":41.17453,"height":11.017679,"page":566}],"sectionNumber":5799,"textBefore":"5% CO2 in ","textAfter":"' medium E","comments":null,"startOffset":1170,"endOffset":1178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e3974977dea78a9c5f6114def814e1cc","type":"CBI_author","value":"Williams","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Hepatocyte isolation and measurement of RDS induction","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.16187,"y":611.3},"width":41.284943,"height":11.017679,"page":566}],"sectionNumber":5799,"textBefore":"other researchers (","textAfter":" et al.,","comments":null,"startOffset":237,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9cafbb2ce534872150a19dd0485f4cd9","type":"CBI_author","value":"Mirsalis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Hepatocyte isolation and measurement of RDS induction","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":598.7},"width":37.078743,"height":11.017679,"page":566}],"sectionNumber":5799,"textBefore":null,"textAfter":null,"comments":null,"startOffset":260,"endOffset":268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"496e0d43dfb3e4c86c94e85d33af10b5","type":"PII","value":"629-799","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":443.90497,"y":126.53998},"width":34.71466,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"2000 Nov; 30(6):","textAfter":". Syngenta File","comments":null,"startOffset":619,"endOffset":626,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787271Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"95f6010aafcaaeec791507dc2caa163f","type":"PII","value":"24 2000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":236.81,"y":546.23},"width":10.059998,"height":10.0905,"page":567},{"topLeft":{"x":306.77,"y":546.23},"width":19.044983,"height":10.0905,"page":567}],"sectionNumber":5806,"textBefore":null,"textAfter":null,"comments":null,"startOffset":64,"endOffset":71,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618799Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787272Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"980c4f61a30893d90c086eff23ff7ff9","type":"CBI_author","value":"Bermudez M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":127.065125,"y":373.89},"width":62.029144,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1130,"endOffset":1140,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"171c37bf5c20d54aed0fff71cedda3ed","type":"CBI_author","value":"Ishida K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":168.23183,"y":149.46002},"width":35.272354,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"E, Saga A, ","textAfter":", Tsuda S.","comments":null,"startOffset":369,"endOffset":377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fcd796127b82096261b439fdbcc9924e","type":"CBI_author","value":"Sasaki YF","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":311.6957,"y":160.97998},"width":42.75235,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"Hachinohe, Japan. Published: ","textAfter":", Sekihashi K,","comments":null,"startOffset":311,"endOffset":320,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bddb88f93e9bd2aa37557c318f3dff34","type":"CBI_author","value":"Nishidate E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":472.0816,"y":160.97998},"width":48.33008,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"K, Izumiyama F, ","textAfter":", Saga A,","comments":null,"startOffset":348,"endOffset":359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75ded4ac3b9e7061f2db9eee88ad10d0","type":"CBI_author","value":"Hamilton","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":291.91446,"y":323.25},"width":42.62079,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"K, Bakke J, ","textAfter":" C, Spak","comments":null,"startOffset":1401,"endOffset":1409,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"55a52ce6180b8a596b9d2b728bcf478d","type":"PII","value":"07 79","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.056,"y":578.75},"width":9.937012,"height":10.0905,"page":567},{"topLeft":{"x":463.06,"y":578.75},"width":10.053986,"height":10.0905,"page":567}],"sectionNumber":5803,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787272Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"906984c1546663bd5bea1ecf2f099ab7","type":"CBI_author","value":"Miyagawa M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":162.42624,"y":424.43},"width":60.715378,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":841,"endOffset":851,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["RULE"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"75c6aa5028f0db337cebadb5b8f99521","type":"CBI_author","value":"Murata","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":271.08197,"y":424.43},"width":32.993958,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"M, Inoue Y, ","textAfter":" T, Ogawa","comments":null,"startOffset":862,"endOffset":868,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6188Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c305c9314320dd26b6bc9eff5afcc1a3","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":111.22272,"y":297.93},"width":68.13425,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1563,"endOffset":1577,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b63494f57965db5bc958e310722c45e8","type":"PII","value":"30 76","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.056,"y":567.95},"width":9.937012,"height":10.0905,"page":567},{"topLeft":{"x":463.06,"y":567.95},"width":10.053986,"height":10.0905,"page":567}],"sectionNumber":5804,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787272Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"97c74d678bb7355b71c16e9bc094bb32","type":"CBI_author","value":"Sasaki Y.F.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":200.3353,"y":195.53998},"width":49.33589,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":null,"textAfter":null,"comments":null,"startOffset":22,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"}],"manualChanges":[],"engines":["RULE"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ea59a771a5df3bec77b51bba80780846","type":"CBI_author","value":"Doolittle D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":272.61},"width":51.90544,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1591,"endOffset":1602,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31cac364c4693a01dce25c8b61393a55","type":"CBI_author","value":"Bakke J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":250.79042,"y":323.25},"width":36.2397,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"E, Steinmetz K, ","textAfter":", Hamilton C,","comments":null,"startOffset":1392,"endOffset":1399,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e34663bf44df239d19d4f5717d5826dc","type":"PII","value":"06 71","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.056,"y":557.03},"width":9.937012,"height":10.0905,"page":567},{"topLeft":{"x":463.06,"y":557.03},"width":10.053986,"height":10.0905,"page":567}],"sectionNumber":5805,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787273Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2fa06534ae69361bc08137b5bfef2e46","type":"CBI_author","value":"Williams","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":373.89},"width":41.284966,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Toxicol. Lett. 63:191-199. ","textAfter":" G, Bermudez","comments":null,"startOffset":1118,"endOffset":1126,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618801Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d27d857ebc2baef8cb3d92621b4ea5df","type":"CBI_author","value":"Muller","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":121.302246,"y":272.61},"width":30.951523,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"6:1521-1524. Doolittle D, ","textAfter":" G and","comments":null,"startOffset":1604,"endOffset":1610,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c49791afcf4ad8e088274628141a4e6a","type":"PII","value":"03 56","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.056,"y":546.23},"width":9.937012,"height":10.0905,"page":567},{"topLeft":{"x":461.62,"y":546.23},"width":10.053986,"height":10.0905,"page":567}],"sectionNumber":5806,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787273Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"000a524412c3f356f2f93daf13ab363c","type":"CBI_author","value":"Uno","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":424.43},"width":19.955673,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"the assay. REFERENCES: ","textAfter":" Y, Takasawa","comments":null,"startOffset":822,"endOffset":825,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"}],"manualChanges":[],"engines":["RULE"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f6584add0a5339136f6720a5c69c3cd5","type":"PII","value":"05 56","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.056,"y":535.31},"width":9.937012,"height":10.0905,"page":567},{"topLeft":{"x":461.86,"y":535.31},"width":10.053986,"height":10.0905,"page":567}],"sectionNumber":5807,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787274Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f0653f98652593b589e5c44b8a234611","type":"CBI_author","value":"Miyagawa M","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":416.69943,"y":222.65997},"width":60.019867,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1780,"endOffset":1790,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"}],"manualChanges":[],"engines":["RULE"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3ccf9aeb5cf48f60d86dd60ea54aa6e9","type":"PII","value":"191-199","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":469.94553,"y":399.09},"width":37.794434,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Toxicol. Lett. 63:","textAfter":". Williams G,","comments":null,"startOffset":1109,"endOffset":1116,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787274Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"99e9d8f3c41f4d43d0f0ffaa40e828d6","type":"published_information","value":"Crit Rev Toxicol","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":300.93887,"y":126.53998},"width":69.09665,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":null,"textAfter":null,"comments":null,"startOffset":585,"endOffset":601,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6dd0360927da20efa1fd5bf169789b85","type":"CBI_author","value":"Takasawa H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":100.66847,"y":424.43},"width":56.586426,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":829,"endOffset":839,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618802Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"035595abd545e0b300bc4b527b38e923","type":"CBI_author","value":"Tsuda S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":207.6535,"y":149.46002},"width":36.384262,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"A, Ishida K, ","textAfter":" (2000). The","comments":null,"startOffset":379,"endOffset":387,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aadf2a3286afc380d01ce181bea6f156","type":"PII","value":"28 58","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.056,"y":524.51},"width":9.937012,"height":10.0905,"page":567},{"topLeft":{"x":463.06,"y":524.51},"width":10.053986,"height":10.0905,"page":567}],"sectionNumber":5808,"textBefore":null,"textAfter":null,"comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787274Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9d72f122205514dfc18052b320ff3dd1","type":"CBI_author","value":"Izumiyama F","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":413.22797,"y":160.97998},"width":54.365692,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"YF, Sekihashi K, ","textAfter":", Nishidate E,","comments":null,"startOffset":335,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"34b902293bfaf6aadeb2975390d2bddd","type":"CBI_author","value":"Saga A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":149.46002},"width":30.262497,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"F, Nishidate E, ","textAfter":", Ishida K,","comments":null,"startOffset":361,"endOffset":367,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b37d2fb3ac38e70f11ff9c90960ac97","type":"CBI_author","value":"Mirsalis J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":323.25},"width":44.265785,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1351,"endOffset":1361,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"da75322ee670e13071c12c739ef2a89f","type":"CBI_author","value":"Scaramuzzino D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":216.0586,"y":373.89},"width":77.10977,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1145,"endOffset":1159,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a859bf73f98b04d4d613bfe99816150a","type":"CBI_author","value":"Loh E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":156.90625,"y":323.25},"width":28.489594,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1372,"endOffset":1377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"498f9dcdb3ef49425e4e639606feed39","type":"PII","value":"399-405","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.72534,"y":260.01},"width":37.574615,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Chem. Toxicol. 25:","textAfter":". (Miyagawa M","comments":null,"startOffset":1770,"endOffset":1777,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618803Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787275Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d9a508f5632d80d026cc1942687c4f3","type":"PII","value":"809-817","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":202.61185,"y":348.57},"width":37.71817,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Cult. Assoc. 13:","textAfter":". Mirsalis J,","comments":null,"startOffset":1342,"endOffset":1349,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787275Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0224cb072b24ac1d29cb998920f38fb1","type":"CBI_author","value":"Steinmetz K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":190.00415,"y":323.25},"width":55.979233,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1379,"endOffset":1390,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5e7ca98f1d2f435aaaa8ab22acd9f7a5","type":"CBI_author","value":"Tyson C","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":113.254105,"y":323.25},"width":38.944473,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1363,"endOffset":1370,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a92074d1f25fd961736b74ba29e663e8","type":"CBI_author","value":"Yoshikawa","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":386.79233,"y":424.43},"width":50.40399,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Ogawa M and ","textAfter":" K (1992).","comments":null,"startOffset":884,"endOffset":893,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"301abf9963beaf976ce2db5106e22a28","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":436.91},"width":74.9128,"height":10.929359,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":810,"endOffset":820,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8602ff0d2f61a7936caa49f47b24a549","type":"CBI_author","value":"Spak D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":349.59848,"y":323.25},"width":33.921295,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1413,"endOffset":1419,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["NER"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2fabb6d68ce9c7c07239eca3a49718bf","type":"PII","value":"24 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-48: Induction of RDS in mouse hepatocytes following exposure to 2,4,6-TCP by oral\ngavage","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":236.81,"y":578.75},"width":10.059998,"height":10.0905,"page":567},{"topLeft":{"x":306.77,"y":578.75},"width":19.044983,"height":10.0905,"page":567}],"sectionNumber":5803,"textBefore":null,"textAfter":null,"comments":null,"startOffset":64,"endOffset":71,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787275Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9ff4841108e1bd9405a1b02fb7049f12","type":"CBI_author","value":"Inoue Y","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":228.51169,"y":424.43},"width":37.398895,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"H, Miyagawa M, ","textAfter":", Murata T,","comments":null,"startOffset":853,"endOffset":860,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f65181850e8c584a626301e4e8ff6f3","type":"CBI_author","value":"Sekihashi K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":358.81647,"y":160.97998},"width":50.023163,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"Published: Sasaki YF, ","textAfter":", Izumiyama F,","comments":null,"startOffset":322,"endOffset":333,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618804Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c41a478377d4d81912aab431ded3309","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":485.4382,"y":126.53998},"width":37.94168,"height":10.526819,"page":567}],"sectionNumber":5810,"textBefore":"2000 Nov; 30(6):629-799. ","textAfter":" File No.","comments":null,"startOffset":628,"endOffset":636,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["99e9d8f3c41f4d43d0f0ffaa40e828d6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"348880b2c2853a60074b185939ecaa7f","type":"CBI_author","value":"Scribner","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":186.05186,"y":272.61},"width":38.359375,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Muller G and ","textAfter":" H (1987).","comments":null,"startOffset":1617,"endOffset":1625,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7e2718ddc8e86216a60505cd99967e8d","type":"PII","value":"1521-1524","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.65088,"y":297.93},"width":48.75914,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"treatment. Carcinogenesis 6:","textAfter":". Doolittle D,","comments":null,"startOffset":1580,"endOffset":1589,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787276Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"59b006e8957d709c574301df1dfb3046","type":"CBI_author","value":"Ogawa","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":319.5035,"y":424.43},"width":32.088654,"height":11.017679,"page":567}],"sectionNumber":5812,"textBefore":"Y, Murata T, ","textAfter":" M and","comments":null,"startOffset":872,"endOffset":877,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c305c9314320dd26b6bc9eff5afcc1a3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ec7ec6cace846400c7b4d919d8381428","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Induction of RDS in mouse hepatocytes by putative non-genotoxic mouse hepatocarcinogens and","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":728.9},"width":82.55249,"height":11.017679,"page":568}],"sectionNumber":5812,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1953,"endOffset":1970,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4dbe7411d6046ca29c73e83d86871e95","type":"CBI_author","value":"Key","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":350.91235,"y":314.25},"width":17.732819,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"the Environment, State ","textAfter":" Laboratory of","comments":null,"startOffset":152,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"feaa2d7c3c1656daf734bd3ca9cd69da","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (>98%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":168.65997},"width":82.55249,"height":11.017679,"page":570}],"sectionNumber":5834,"textBefore":null,"textAfter":null,"comments":null,"startOffset":86,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618805Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d8c98dc4e580b3c0e8461b8a3503b06","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":187.5296,"y":268.16998},"width":37.931686,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"and Chemistry 28:603-608. ","textAfter":" File No.","comments":null,"startOffset":467,"endOffset":475,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dcce9a1300d17f05b98ce9bc1fa388e8","type":"CBI_author","value":"Zhao","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":346.6254,"y":291.21002},"width":21.428009,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"H, Hu P, ","textAfter":" Q (2009).","comments":null,"startOffset":326,"endOffset":330,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9baa23a222e6bfcd074fb664decb1c23","type":"published_information","value":"Environmental Toxicology and Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":345.9482,"y":279.69},"width":177.01334,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":null,"textAfter":null,"comments":null,"startOffset":416,"endOffset":454,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1ec67bfc8ddee4801a272c6d6e1709d","type":"PII","value":"603-608","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":146.64848,"y":268.16998},"width":34.30156,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"and Chemistry 28:","textAfter":". Syngenta File","comments":null,"startOffset":458,"endOffset":465,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787277Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"41385cd9ec3d9f61020fb659ab1950d1","type":"CBI_author","value":"Hu","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":319.32507,"y":291.21002},"width":13.290649,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"D, Zhu H, ","textAfter":" P, Zhao","comments":null,"startOffset":320,"endOffset":322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2645e7d7832bd0a5d0799546a55835f6","type":"CBI_author","value":"Zhu","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":286.73593,"y":291.21002},"width":17.005768,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"Published: Yin D, ","textAfter":" H, Hu","comments":null,"startOffset":313,"endOffset":316,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f88268feaa09824986a892675eff9801","type":"CBI_author","value":"Yin D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":255.09299,"y":291.21002},"width":26.537476,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"September 2008. Published: ","textAfter":", Zhu H,","comments":null,"startOffset":306,"endOffset":311,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d07283e3897c4e4c882fc1677a077b25","type":"CBI_author","value":"Yin D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.49072,"y":325.64996},"width":28.310318,"height":10.526819,"page":570}],"sectionNumber":5831,"textBefore":"Report: K-CA 5.8.1/38 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["9baa23a222e6bfcd074fb664decb1c23"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3d23e6c68777831a2e3c4d9d2ca9ecc","type":"CBI_author","value":"Sasaki Y.F","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":430.13943,"y":362.49},"width":49.355225,"height":11.017679,"page":570}],"sectionNumber":5833,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1339,"endOffset":1349,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618806Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ea678d54b957380e7f9d9d6299712e65","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":71.184,"y":562.07},"width":28.467995,"height":10.018499,"page":571}],"sectionNumber":5836,"textBefore":null,"textAfter":null,"comments":null,"startOffset":84,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f128cb5b8d3736a2dc38fb2dfd6679da","type":"CBI_author","value":"Hamilton","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":432.50635,"y":133.38},"width":42.62079,"height":11.017679,"page":571}],"sectionNumber":5849,"textBefore":"Spearman–Karber method (","textAfter":", 1978). DHPLC","comments":null,"startOffset":444,"endOffset":452,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2f9df99083ea42718f4357bd97354fbb","type":"CBI_author","value":"Yin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":88.92192,"y":196.85999},"width":17.548958,"height":11.017679,"page":572}],"sectionNumber":5852,"textBefore":"laboratory data (","textAfter":", 2006) On","comments":null,"startOffset":1282,"endOffset":1285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bde42a39bb58e501a05bbf4b82466c2b","type":"CBI_author","value":"Fischer","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":381.90225,"y":255.69},"width":33.325134,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"B6C3F1 Mice and ","textAfter":" 344 Rats.","comments":null,"startOffset":4256,"endOffset":4263,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7e6f78196b4a1d19617e0f374ccb43f9","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (96-97%)","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":169.02002},"width":82.55249,"height":11.017679,"page":573}],"sectionNumber":5853,"textBefore":null,"textAfter":null,"comments":null,"startOffset":88,"endOffset":105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc8c4b79f50a021b813dfb7afd552051","type":"CBI_author","value":"Yin D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":451.28943,"y":361.29},"width":28.279846,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"Res 609:92–101. (","textAfter":" et al,","comments":null,"startOffset":4174,"endOffset":4179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78b9b95351c8ca410a52e02fc8451c07","type":"published_information","value":"Mutat Res","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":183.26,"y":386.61},"width":45.943848,"height":11.0232,"page":573}],"sectionNumber":5852,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4151,"endOffset":4160,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e558103e8bf064413779b9bc88c973f","type":"CBI_author","value":"Wang X","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":152.40192,"y":399.33},"width":37.99504,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"Y, Li Y, ","textAfter":", Zhao Q","comments":null,"startOffset":4040,"endOffset":4046,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95ed5b447a565697310c3832aea93622","type":"CBI_author","value":"Hamilton","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":449.87},"width":42.62079,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"assay described. REFERENCES: ","textAfter":" MA, Russo","comments":null,"startOffset":3822,"endOffset":3830,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618807Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"76a7d9f93521753eb3d3423b02d9247c","type":"published_information","value":"Environ Sci Technol","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":295.13,"y":437.27},"width":92.808655,"height":11.0232,"page":573}],"sectionNumber":5852,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3963,"endOffset":3982,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7810f9dfa55008127e6083842fe1f14a","type":"CBI_author","value":"Thurston RV","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":192.6758,"y":449.87},"width":61.620636,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3845,"endOffset":3856,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["NER"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5c85c67eb06be00f952540fed3ccc312","type":"CBI_author","value":"Yin D","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":399.33},"width":28.279839,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"Correction 12:417 (1978). ","textAfter":", Gu Y,","comments":null,"startOffset":4021,"endOffset":4026,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0e2adf8beecf0a5af1f97d7bfd89f769","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":462.35},"width":74.9128,"height":10.929359,"page":573}],"sectionNumber":5852,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3810,"endOffset":3820,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ea137972a0bfd9d62d73f22b8c8643b","type":"CBI_author","value":"Zhao","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":194.97215,"y":399.33},"width":23.543686,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"Y, Wang X, ","textAfter":" Q (2006).","comments":null,"startOffset":4048,"endOffset":4052,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d948c4920d9030fc68e07601a1279d0","type":"CBI_author","value":"Li Y","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":126.48,"y":399.33},"width":21.545448,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"D, Gu Y, ","textAfter":", Wang X,","comments":null,"startOffset":4034,"endOffset":4038,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2195a9c72161a2be59f536736b9715fe","type":"CBI_author","value":"Russo","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":137.3875,"y":449.87},"width":27.849274,"height":11.017679,"page":573}],"sectionNumber":5852,"textBefore":"REFERENCES: Hamilton MA, ","textAfter":" RC, Thurston","comments":null,"startOffset":3835,"endOffset":3840,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["78b9b95351c8ca410a52e02fc8451c07","76a7d9f93521753eb3d3423b02d9247c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"87b05147e15b0f7d7827b2fa685ca2fe","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":355.81592,"y":298.52997},"width":38.05127,"height":10.526819,"page":573}],"sectionNumber":5850,"textBefore":"Maryland 20014, USA. ","textAfter":" File No.","comments":null,"startOffset":248,"endOffset":256,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"391fca1f2cd08c894c2512a66559b99f","type":"CBI_author","value":"Large","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":75.984,"y":107.58002},"width":24.127129,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"and Methods: 18 ","textAfter":" granular lymphocyte","comments":null,"startOffset":29,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618808Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fd24367b0c0c2c43ed185e4966123c76","type":"CBI_author","value":"Haseman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":310.24088,"y":84.54401},"width":38.110962,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"in Thomas J; ","textAfter":" J.K; Goodman","comments":null,"startOffset":302,"endOffset":309,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9de300f22925726dd6668727e9487e44","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Study Design and Methods:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":50.080017},"width":38.05121,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"Science. 99(1): 3-19. ","textAfter":" File No.","comments":null,"startOffset":579,"endOffset":587,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f1f4784f6c1037c054dd2bdd9c9aed3c","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":365.32782,"y":73.119995},"width":30.332245,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"lymphocytic leukemia in ","textAfter":" 344 rats","comments":null,"startOffset":424,"endOffset":431,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"115916d6e6ced502726530c532d63ba3","type":"CBI_author","value":"Thomas J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":108.66503,"y":84.54401},"width":42.334023,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"of evidence approach. ","textAfter":" et al.,","comments":null,"startOffset":253,"endOffset":262,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc17364f33e699182d0f65bf053f24b8","type":"CBI_author","value":"Mills","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Materials:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.87582,"y":378.09},"width":24.360641,"height":11.017679,"page":574}],"sectionNumber":5859,"textBefore":"4% fat (Allied ","textAfter":", Inc., Chicago,","comments":null,"startOffset":140,"endOffset":145,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cdaa1f0324510b5807a86fa14ce91eac","type":"PII","value":"45-55","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Materials:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":250.814,"y":180.65997},"width":22.093018,"height":10.0905,"page":574}],"sectionNumber":5858,"textBefore":"Temperature: 22-24°C Humidity: ","textAfter":"% Air changes:","comments":null,"startOffset":565,"endOffset":570,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787279Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"72d58dfb8045a395cf5b72a03463b570","type":"CBI_author","value":"Thomas","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.77936,"y":84.54401},"width":33.16089,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"(2007). Published in ","textAfter":" J; Haseman","comments":null,"startOffset":292,"endOffset":298,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a24752663395ed2677cfd7271f5de698","type":"CBI_author","value":"Loughran T.P","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":472.52927,"y":84.54401},"width":56.746246,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":null,"textAfter":null,"comments":null,"startOffset":338,"endOffset":350,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9ce8df9d3c8b48ae7aa1c25403c13c4a","type":"CBI_author","value":"Spencer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":73.119995},"width":33.10108,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"J.M; Loughran T.P; ","textAfter":" P.J. (2007).","comments":null,"startOffset":352,"endOffset":359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618809Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8fc02b81ee89be2145d3b079fffb2853","type":"CBI_author","value":"Goodman","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":369.234,"y":84.54401},"width":40.501404,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"J; Haseman J.K; ","textAfter":" J.I; Ward","comments":null,"startOffset":315,"endOffset":322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7c66868dafb8e1dbc461d022727cb60","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Materials:","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":478.55},"width":28.467995,"height":10.018499,"page":574}],"sectionNumber":5857,"textBefore":null,"textAfter":null,"comments":null,"startOffset":119,"endOffset":126,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"568fdeb036e64e6148b1d5f81be6af63","type":"CBI_author","value":"Wayne","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Materials:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.61,"y":217.73999},"width":26.335022,"height":10.0905,"page":574}],"sectionNumber":5858,"textBefore":null,"textAfter":" Sterilizable Lab","comments":null,"startOffset":415,"endOffset":420,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de2a43565128c13a1cbc129f73a0d0dc","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Materials:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":266.26703,"y":327.45},"width":27.505005,"height":10.0905,"page":574}],"sectionNumber":5858,"textBefore":"B6C3F1 mice, ","textAfter":" 344 Rats","comments":null,"startOffset":54,"endOffset":61,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"226460d488412284620912204d304eba","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":616.1},"width":35.897438,"height":10.929359,"page":574}],"sectionNumber":5855,"textBefore":"carcinogenic in male ","textAfter":" 344 rats,","comments":null,"startOffset":866,"endOffset":873,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2811ac118e54a1e2e39619603e1541c2","type":"CBI_author","value":"Ward","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":426.7431,"y":84.54401},"width":23.240723,"height":10.526819,"page":574}],"sectionNumber":5860,"textBefore":"J.K; Goodman J.I; ","textAfter":" J.M; Loughran","comments":null,"startOffset":328,"endOffset":332,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3fb9fec936e7d654b29acbf1ca3d5b97","type":"CBI_author","value":"Wayne","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Materials:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":396.19733,"y":390.69},"width":32.165924,"height":11.017679,"page":574}],"sectionNumber":5859,"textBefore":"was administered via ","textAfter":" ® Sterilizable","comments":null,"startOffset":84,"endOffset":89,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"776eab6a3f90f0b3450806a3054b6a46","type":"CBI_author","value":"Kelly","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":179.54,"y":150.89996},"width":25.575058,"height":11.017679,"page":575}],"sectionNumber":5873,"textBefore":"in a Patterson-","textAfter":" twin-shell blender","comments":null,"startOffset":483,"endOffset":488,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"140f9ee7de99cbcaf300dc2395dc8bb2","type":"CBI_author","value":"Wayne","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":188.82},"width":32.165916,"height":11.017679,"page":575}],"sectionNumber":5873,"textBefore":"chemical with autoclaved ","textAfter":" ® Sterilizable","comments":null,"startOffset":157,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f4b4a4a3c4ac41786cf058868b7f223c","type":"CBI_author","value":"Patterson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":134.96973,"y":150.89996},"width":41.903214,"height":11.017679,"page":575}],"sectionNumber":5873,"textBefore":"minutes in a ","textAfter":"-Kelly twin-shell blender","comments":null,"startOffset":473,"endOffset":482,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a60134a2eefb9428d3d97e4521297aed","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.15,"y":254.13},"width":10.059998,"height":10.0905,"page":575},{"topLeft":{"x":472.06,"y":254.13},"width":10.059998,"height":10.0905,"page":575}],"sectionNumber":5870,"textBefore":null,"textAfter":null,"comments":null,"startOffset":39,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78728Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"45ad083dfa9b7ee75371fc9ffe64124d","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Chronic/carcinogenicity studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.15,"y":446.51},"width":10.059998,"height":10.0905,"page":575},{"topLeft":{"x":472.06,"y":446.51},"width":10.059998,"height":10.0905,"page":575}],"sectionNumber":5864,"textBefore":null,"textAfter":null,"comments":null,"startOffset":47,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78728Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3eae808b52ed85ca28395b378256e4d3","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.15,"y":239.22003},"width":10.059998,"height":10.0905,"page":575},{"topLeft":{"x":472.06,"y":239.22003},"width":10.059998,"height":10.0905,"page":575}],"sectionNumber":5871,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78728Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"724aed1115575bf6e908612b56ff74f9","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Chronic/carcinogenicity studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.15,"y":431.63},"width":10.059998,"height":10.0905,"page":575},{"topLeft":{"x":472.06,"y":431.63},"width":10.059998,"height":10.0905,"page":575}],"sectionNumber":5865,"textBefore":null,"textAfter":null,"comments":null,"startOffset":341,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787281Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e7256520869bbd2254a139a82fa5f7e7","type":"CBI_author","value":"Cox","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":310.3954,"y":86.94403},"width":19.359497,"height":11.017679,"page":576}],"sectionNumber":5873,"textBefore":"(1975) extensions of ","textAfter":" methods for","comments":null,"startOffset":2737,"endOffset":2740,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c5d35c617116d4cb2def130d7bac285","type":"CBI_author","value":"Cox","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.822,"y":99.65997},"width":19.238068,"height":11.017679,"page":576}],"sectionNumber":5873,"textBefore":"the method of ","textAfter":" (1972) for","comments":null,"startOffset":2656,"endOffset":2659,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed2459f4d3f1733b4050f46bcb2ab43b","type":"CBI_author","value":"Kaplan","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.19962,"y":137.58002},"width":32.883514,"height":11.017679,"page":576}],"sectionNumber":5873,"textBefore":"product-limit procedure of ","textAfter":" and Meier","comments":null,"startOffset":2353,"endOffset":2359,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618811Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"713719fa1be3c6eae93a2d5e4e354c20","type":"CBI_author","value":"Meier","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":468.4089,"y":137.58002},"width":27.330414,"height":11.017679,"page":576}],"sectionNumber":5873,"textBefore":"of Kaplan and ","textAfter":" (1958). Animals","comments":null,"startOffset":2364,"endOffset":2369,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d03c7068daf06bd7228709521cfb043d","type":"CBI_author","value":"Armitage","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":454.9375,"y":627.62},"width":42.477264,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"continuity correction (","textAfter":", 1971), was","comments":null,"startOffset":3906,"endOffset":3914,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51fe43fafbaedc478da60c6fa2c94f22","type":"CBI_author","value":"Cochran","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":85.091034,"y":627.62},"width":38.197594,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"are shown. The ","textAfter":"-Armitage test for","comments":null,"startOffset":3823,"endOffset":3830,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be51d8e0a225cec1b2f00f85a78b86c4","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":652.34},"width":28.544807,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"tables, where the ","textAfter":" exact P","comments":null,"startOffset":3786,"endOffset":3792,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"decffb2d062453143aec38cc334f8f20","type":"CBI_author","value":"Armitage","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":353.59,"y":476.51},"width":42.598724,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"exact tests, Cochran-","textAfter":" tests, etc.)","comments":null,"startOffset":4963,"endOffset":4971,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"293cf9cb92c65e9932de9cbd30384fca","type":"CBI_author","value":"Saffiotti","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":387.7315,"y":439.19},"width":36.924164,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5167,"endOffset":5176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"653b74454cc15b507b4f9d50fed29036","type":"CBI_author","value":"Cox","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":322.7301,"y":728.18},"width":19.359497,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"exact test (","textAfter":", 1970) was","comments":null,"startOffset":3220,"endOffset":3223,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e22656892c11247f5828336f32707d4d","type":"CBI_author","value":"Armitage","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":125.78,"y":627.62},"width":42.598724,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"shown. The Cochran-","textAfter":" test for","comments":null,"startOffset":3831,"endOffset":3839,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618812Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c7b03b79b77ad6e8cacc4ddd33e76d8","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":231.51456,"y":476.51},"width":28.42337,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"of tumours (","textAfter":" exact tests,","comments":null,"startOffset":4935,"endOffset":4941,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75852b0bd69865878a3c15a3c4a24e2a","type":"CBI_author","value":"Miller","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":470.38705,"y":690.26},"width":28.522705,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"Bonferroni inequality (","textAfter":", 1966) requires","comments":null,"startOffset":3556,"endOffset":3562,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b0300a4fe5bb976f24c9b411430827d","type":"CBI_author","value":"Cochran","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":312.59232,"y":476.51},"width":38.315186,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"(Fisher exact tests, ","textAfter":"-Armitage tests, etc.)","comments":null,"startOffset":4955,"endOffset":4962,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f39bcdef39b22ddaeaae4621438ebb9","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Rats","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.93643,"y":728.18},"width":28.533783,"height":11.017679,"page":577}],"sectionNumber":5873,"textBefore":"analyses, the one-tailed ","textAfter":" exact test","comments":null,"startOffset":3201,"endOffset":3207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7acdaeb8dab28a22be89d2e1f9eaa88f","type":"PII","value":"(22) 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.046,"y":501.35},"width":15.984985,"height":10.0905,"page":579},{"topLeft":{"x":488.62,"y":501.35},"width":10.053986,"height":10.0905,"page":579}],"sectionNumber":5904,"textBefore":"3 (15) 11 ","textAfter":" (22) Combined","comments":null,"startOffset":99,"endOffset":106,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787282Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e00aeaa30bf179d9cb97e5f742774f9e","type":"PII","value":"(22) 13","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":438.046,"y":490.43},"width":15.984985,"height":10.0905,"page":579},{"topLeft":{"x":488.62,"y":490.43},"width":10.053986,"height":10.0905,"page":579}],"sectionNumber":5903,"textBefore":"3 (15) 11 ","textAfter":" (26) Historical","comments":null,"startOffset":157,"endOffset":164,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787282Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f6cb9fa09f654d4d649182eb257eb5f6","type":"PII","value":"5000 10000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":217.25,"y":640.1},"width":19.044998,"height":10.018499,"page":579},{"topLeft":{"x":281.57,"y":640.1},"width":23.598969,"height":10.018499,"page":579}],"sectionNumber":5895,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787282Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e64dc8e3a5eb9ed2261567f5f5e34172","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.83399,"y":554.99},"width":30.034004,"height":10.0905,"page":579}],"sectionNumber":5900,"textBefore":"Bone ","textAfter":" Hyperplasi","comments":null,"startOffset":5,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618813Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7eaea200e5ae9ce815d6cad2fbcd7b58","type":"PII","value":"(10) 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.492,"y":339.09},"width":15.994019,"height":10.0905,"page":579},{"topLeft":{"x":426.67,"y":339.09},"width":10.053986,"height":10.0905,"page":579}],"sectionNumber":5915,"textBefore":null,"textAfter":null,"comments":null,"startOffset":366,"endOffset":373,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787282Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5798db921ebf0604069153d2605675f1","type":"PII","value":"5000 10000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":412.99,"y":640.1},"width":19.044983,"height":10.018499,"page":579},{"topLeft":{"x":477.46,"y":640.1},"width":23.598969,"height":10.018499,"page":579}],"sectionNumber":5895,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787282Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"50b4e0380175263e3af04dc519cf8961","type":"PII","value":"(10) 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":177.362,"y":414.45},"width":15.993988,"height":10.0905,"page":579},{"topLeft":{"x":230.93,"y":414.45},"width":10.054001,"height":10.0905,"page":579}],"sectionNumber":5909,"textBefore":"Liver Hyperplasia 2 ","textAfter":" (24) 6","comments":null,"startOffset":20,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787283Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3ced8010773b1a42fe78c17e7953c7f8","type":"PII","value":"(45) 32","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":242.306,"y":403.65},"width":15.984985,"height":10.0905,"page":579},{"topLeft":{"x":295.73,"y":403.65},"width":10.053986,"height":10.0905,"page":579}],"sectionNumber":5909,"textBefore":"3 (15)b 22 ","textAfter":" (68) 1","comments":null,"startOffset":78,"endOffset":85,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787283Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"88ced5594349420d9a7f8c5be8a86f9a","type":"PII","value":"5214 10428","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":430.75,"y":447.11},"width":19.044983,"height":10.0905,"page":579},{"topLeft":{"x":490.54,"y":447.11},"width":23.598969,"height":10.0905,"page":579}],"sectionNumber":5907,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787283Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ee26f89f051be317bf33ae8c270498b4","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":435.31,"y":629.54},"width":10.059998,"height":10.0905,"page":579},{"topLeft":{"x":497.26,"y":629.54},"width":10.059998,"height":10.0905,"page":579}],"sectionNumber":5896,"textBefore":null,"textAfter":null,"comments":null,"startOffset":27,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787283Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3012473f0db3841f54b514cef9ca13bd","type":"PII","value":"(15) 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.492,"y":501.35},"width":15.994019,"height":10.0905,"page":579},{"topLeft":{"x":426.67,"y":501.35},"width":10.053986,"height":10.0905,"page":579}],"sectionNumber":5902,"textBefore":"29 (58)b 3 ","textAfter":" (22) 11","comments":null,"startOffset":91,"endOffset":98,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787284Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e4d98234df66caca04ee04a100162f1b","type":"PII","value":"50 50","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":239.57,"y":629.54},"width":10.059998,"height":10.0905,"page":579},{"topLeft":{"x":304.37,"y":629.54},"width":10.059998,"height":10.0905,"page":579}],"sectionNumber":5896,"textBefore":null,"textAfter":null,"comments":null,"startOffset":18,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618814Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787284Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d3def3778d894e0923eae068c26a542c","type":"PII","value":"(15) 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":370.492,"y":490.43},"width":15.994019,"height":10.0905,"page":579},{"topLeft":{"x":426.67,"y":490.43},"width":10.053986,"height":10.0905,"page":579}],"sectionNumber":5902,"textBefore":"29 (58)b 3 ","textAfter":" (22) 13","comments":null,"startOffset":149,"endOffset":156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787284Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3c606ed8fa5e4b349bebf54213ec4251","type":"PII","value":"5000 10000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-51: Lesions/Tumours induced by 2,4,6-TCP in two-year dietary exposure bioassays in\nFischer 344 rats and B6C3F1 mice","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":235.01,"y":447.11},"width":19.044998,"height":10.0905,"page":579},{"topLeft":{"x":297.53,"y":447.11},"width":23.598969,"height":10.0905,"page":579}],"sectionNumber":5907,"textBefore":null,"textAfter":null,"comments":null,"startOffset":19,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787284Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"17a57bbb23d9fe5d470cbdb27c5b9e98","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and pathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":668.3},"width":36.42772,"height":10.67124,"page":579}],"sectionNumber":5917,"textBefore":"exposure bioassays in ","textAfter":" 344 rats","comments":null,"startOffset":378,"endOffset":385,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d2f683a60d0c32b05d5317bdbe9d521","type":"CBI_author","value":"Huff","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":229.0177,"y":490.91},"width":19.89412,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":"NC, US. Published: ","textAfter":", J. (2012).","comments":null,"startOffset":203,"endOffset":207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["4530c89afb5aff9813a3608c910671c5","18d34225e7d13d42c97593a618d1f28a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8972360421ec5311aa37d0feb1035367","type":"CBI_author","value":"Huff","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":206.20172,"y":513.83},"width":19.674988,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":"Report: K-CA 5.8.1/40 ","textAfter":", J. (2012).","comments":null,"startOffset":22,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["4530c89afb5aff9813a3608c910671c5","18d34225e7d13d42c97593a618d1f28a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4530c89afb5aff9813a3608c910671c5","type":"published_information","value":"Chemosphere","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":206.21922,"y":479.39},"width":56.01906,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":null,"textAfter":null,"comments":null,"startOffset":288,"endOffset":299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"19bfe1155002afcb11ae585eed36be8e","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Neoplastic:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":381.90225,"y":438.71},"width":33.325134,"height":11.017679,"page":580}],"sectionNumber":5921,"textBefore":"B6C3F1 Mice and ","textAfter":" 344 Rats","comments":null,"startOffset":1393,"endOffset":1400,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"271ce5366543ed2e0b05d72545f228df","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":64.104,"y":278.13},"width":68.25567,"height":11.017679,"page":580}],"sectionNumber":5925,"textBefore":null,"textAfter":null,"comments":null,"startOffset":30,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75ddc5f5c15de71d4e8249662c9d3c71","type":"PII","value":"521-525","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Neoplastic:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":278.738,"y":479.39},"width":34.482086,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":"Trichlorophenol. Chemosphere 89, ","textAfter":". Syngenta File","comments":null,"startOffset":304,"endOffset":311,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618815Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787285Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5b8423209eb5aec7d5e2b85b01b057a8","type":"CBI_author","value":"Fischer","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":265.52997},"width":33.446564,"height":11.017679,"page":580}],"sectionNumber":5925,"textBefore":"male and female ","textAfter":" rats and","comments":null,"startOffset":132,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["271ce5366543ed2e0b05d72545f228df"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e260c2ab94c8312597502bc7a81f8078","type":"CBI_author","value":"Huff J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":472.64944,"y":101.70001},"width":28.78769,"height":11.017679,"page":580}],"sectionNumber":5925,"textBefore":"[liver tumors]. (","textAfter":", 2012) STUDY","comments":null,"startOffset":1229,"endOffset":1235,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["271ce5366543ed2e0b05d72545f228df"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cb4f47da63b35c262c44c09f7d94fb64","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":317.28973,"y":479.39},"width":37.94171,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":"Chemosphere 89, 521-525. ","textAfter":" File No.","comments":null,"startOffset":313,"endOffset":321,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4530c89afb5aff9813a3608c910671c5","18d34225e7d13d42c97593a618d1f28a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"440a17e2eeff3df6bee4cb50b367176e","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Neoplastic:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":101.02175,"y":603.62},"width":33.34719,"height":11.017679,"page":580}],"sectionNumber":5921,"textBefore":"carcinogenic in male ","textAfter":" 344 rats,","comments":null,"startOffset":1123,"endOffset":1130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c6435dd0197497c50fa8dbb3df3859d","type":"CBI_author","value":"Long","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":302.19385,"y":490.91},"width":22.186249,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":"Huff, J. (2012). ","textAfter":"-term toxicology and","comments":null,"startOffset":220,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4530c89afb5aff9813a3608c910671c5","18d34225e7d13d42c97593a618d1f28a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18d34225e7d13d42c97593a618d1f28a","type":"published_information","value":"Environmental Health","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":291.93503,"y":502.31},"width":90.00275,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":null,"textAfter":null,"comments":null,"startOffset":129,"endOffset":149,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7975932971b118d593296114b352f1f5","type":"CBI_author","value":"Long","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: Neoplastic:","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":285.63275,"y":513.83},"width":21.926025,"height":10.526819,"page":580}],"sectionNumber":5919,"textBefore":"Huff, J. (2012). ","textAfter":"-term Toxicology and","comments":null,"startOffset":39,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4530c89afb5aff9813a3608c910671c5","18d34225e7d13d42c97593a618d1f28a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b2c551eaa39c153ec91f92c1e7a1a72d","type":"CBI_author","value":"Fisher","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the conditions of the study, the reproductive processes of male and female rats do not appear\nto be a primary target for the effects of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.77,"y":182.46002},"width":23.535995,"height":10.0905,"page":581}],"sectionNumber":5928,"textBefore":null,"textAfter":" Scientific and","comments":null,"startOffset":92,"endOffset":98,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db0fe4aaca2a0aed21e2a599ba68cb2c","type":"CBI_author","value":"Zenick H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":354.27484,"y":727.94},"width":39.126953,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":null,"textAfter":null,"comments":null,"startOffset":245,"endOffset":253,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618816Z"}],"manualChanges":[],"engines":["NER"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a14f471bae71b2ed5400a42faf576915","type":"CBI_author","value":"George","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":480.45822,"y":727.94},"width":30.362122,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"E, Manson J, ","textAfter":" E, Smith","comments":null,"startOffset":273,"endOffset":279,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25aa22a85cffc7e3125ce0eecfa722d2","type":"published_information","value":"Reproductive Toxicology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":382.58386,"y":750.98},"width":103.57825,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":null,"textAfter":null,"comments":null,"startOffset":69,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a033a4b8d7626e421349fdaffec9ab1","type":"CBI_author","value":"Blackburn K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":196.49072,"y":750.98},"width":54.923447,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"Report: K-CA 5.8.1/41 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"995367ca688e58e14a8211d64bf646e2","type":"CBI_author","value":"Manson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":435.2796,"y":727.94},"width":33.081207,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"H, Hope E, ","textAfter":" J, George","comments":null,"startOffset":263,"endOffset":269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93e4960a45375e6b6f7b46bb2efd7d51","type":"CBI_author","value":"Blackburn K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":296.13824,"y":727.94},"width":53.150665,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"Medical Centre. Published: ","textAfter":", Zenick H,","comments":null,"startOffset":232,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43b3534f19517b4271968e7844cbd272","type":"CBI_author","value":"Smith","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":716.42},"width":24.794449,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"J, George E, ","textAfter":" M (1986).","comments":null,"startOffset":283,"endOffset":288,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de445ab5ee89acffd981baabd890fbd3","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":443.52365,"y":705.02},"width":38.05127,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"Toxicology 6, 233-239. ","textAfter":" File No.","comments":null,"startOffset":438,"endOffset":446,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ad982c41fbc82a9523ccdd26c9fe187","type":"published_information","value":"Environmental Health","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":374.0162,"y":739.46},"width":89.99274,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":null,"textAfter":null,"comments":null,"startOffset":158,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dc69435a6b29e3c8c85413d4bdae584f","type":"PII","value":"233-239","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":395.91086,"y":705.02},"width":34.678772,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":"Applied Toxicology 6, ","textAfter":". Syngenta File","comments":null,"startOffset":429,"endOffset":436,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618817Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787286Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"52dd8b04a97feb90812732bd74f74a57","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TEST MATERIAL (PURITY): 2,4,6-TCP (99%).","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":582.35},"width":82.55249,"height":11.017679,"page":581}],"sectionNumber":5926,"textBefore":null,"textAfter":null,"comments":null,"startOffset":86,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53378e70e455b6d878c15df2d2329754","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the study, the reproductive processes of male and female rats do not appear\nto be a primary target for the effects of 2,4,6-TCP.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":169.38},"width":28.467995,"height":10.018499,"page":581}],"sectionNumber":5928,"textBefore":null,"textAfter":null,"comments":null,"startOffset":133,"endOffset":140,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b6226c5797f725fbe9525370dd5e9618","type":"published_information","value":"Reproductive Toxicology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":280.01288,"y":716.42},"width":104.40494,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":null,"textAfter":null,"comments":null,"startOffset":317,"endOffset":340,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ab332b494c1b364797239cb5f9ec6c84","type":"CBI_author","value":"Hope E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY/CONCLUSIONS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":398.26822,"y":727.94},"width":32.13498,"height":10.526819,"page":581}],"sectionNumber":5923,"textBefore":null,"textAfter":null,"comments":null,"startOffset":255,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["NER"],"reference":["5ad982c41fbc82a9523ccdd26c9fe187","b6226c5797f725fbe9525370dd5e9618","25aa22a85cffc7e3125ce0eecfa722d2"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0f47901db72bda41fbfde06bd81360b7","type":"CBI_author","value":"Zenick","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":321.6673,"y":395.13},"width":31.569763,"height":11.017679,"page":582}],"sectionNumber":5931,"textBefore":null,"textAfter":null,"comments":null,"startOffset":559,"endOffset":565,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"de794789c7e2ab68333d8e6364fd6638","type":"CBI_author","value":"Chow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the conditions of the study, the reproductive processes of male and female rats do not appear\nto be a primary target for the effects of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":253.67601,"y":618.5},"width":22.482956,"height":10.0905,"page":582}],"sectionNumber":5929,"textBefore":"Purina Lab ","textAfter":" 5001 ad","comments":null,"startOffset":465,"endOffset":469,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c65aad05410b1292ac812865fc2e3382","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the study, the reproductive processes of male and female rats do not appear\nto be a primary target for the effects of 2,4,6-TCP.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":691.1},"width":50.65303,"height":10.0905,"page":582}],"sectionNumber":5929,"textBefore":null,"textAfter":" (Canada)","comments":null,"startOffset":194,"endOffset":207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59e0cef3bbca03db802256e4f2f8d960","type":"CBI_author","value":"Evans","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the conditions of the study, the reproductive processes of male and female rats do not appear\nto be a primary target for the effects of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.57,"y":728.18},"width":22.978027,"height":10.0905,"page":582}],"sectionNumber":5929,"textBefore":"Long-","textAfter":" hooded (LEH)","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"075b2613ee867842c1f26fa5a8ebe4cf","type":"CBI_author","value":"Long","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the conditions of the study, the reproductive processes of male and female rats do not appear\nto be a primary target for the effects of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.61,"y":728.18},"width":20.007996,"height":10.0905,"page":582}],"sectionNumber":5929,"textBefore":null,"textAfter":"-Evans hooded (LEH)","comments":null,"startOffset":33,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618818Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65fa14859185dbf449a390f389b9e3b0","type":"CBI_author","value":"Wallis","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.2483,"y":252.09003},"width":29.759186,"height":11.017679,"page":583}],"sectionNumber":5931,"textBefore":"using a Kruskal ","textAfter":" test. Foetal","comments":null,"startOffset":5808,"endOffset":5814,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618819Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"512c7d8021af28905c4110081609202d","type":"PII","value":"40 1000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":322.86682,"y":490.43},"width":39.143158,"height":11.017679,"page":584}],"sectionNumber":5935,"textBefore":"animals; and 24/","textAfter":" mg/kg animals.","comments":null,"startOffset":208,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618819Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787287Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"91e1de89ec667602c6dc1e6e6da48208","type":"PII","value":"30 500","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":175.60803,"y":490.43},"width":33.623215,"height":11.017679,"page":584}],"sectionNumber":5935,"textBefore":"mg/kg animals; 25/","textAfter":"-mg/kg animals; and","comments":null,"startOffset":179,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618819Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787287Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dbbfa9fe53a707e654301ab022fd3a63","type":"PII","value":"(76-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.3758,"y":187.5},"width":36.04416,"height":11.017679,"page":584}],"sectionNumber":5935,"textBefore":"was quite good ","textAfter":"%). Evaluation of","comments":null,"startOffset":2450,"endOffset":2457,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618819Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787287Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4951ab6985a6616b65f8eb6533d84ea9","type":"CBI_author","value":"Blackburn K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":114.22562,"y":702.86},"width":57.889145,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":"REFERENCES: Zenick H, ","textAfter":", Hope E","comments":null,"startOffset":3249,"endOffset":3260,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618819Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8b573d771e9d6c2f531d84bcc52971ce","type":"CBI_author","value":"Koller","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.82,"y":590.18},"width":26.507538,"height":10.526819,"page":585}],"sectionNumber":5933,"textBefore":"Exon J. H. ","textAfter":" L.D. (1985).","comments":null,"startOffset":179,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618819Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4f0f4dd32e4c883c2c135eccc0c8bb7","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Female reproductive segment","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":452.51},"width":82.55249,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3714,"endOffset":3731,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ccd941f994da3ae4241be8d0b41bb914","type":"PII","value":"275-283","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":404.53403,"y":690.26},"width":37.655945,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":"App. Pharmacol. 73, ","textAfter":". (Blackburn K","comments":null,"startOffset":3414,"endOffset":3421,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787287Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9df9f3f3e7d554022b174005664afb7a","type":"PII","value":"307-330","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":148.89944,"y":567.11},"width":34.320145,"height":10.526819,"page":585}],"sectionNumber":5933,"textBefore":"Chapter 25. pp. ","textAfter":". Syngenta File","comments":null,"startOffset":370,"endOffset":377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787288Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c39c128dd6282f16d0f1670ee717b4f7","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Female reproductive segment","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":715.34},"width":74.9128,"height":10.929359,"page":585}],"sectionNumber":5935,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3227,"endOffset":3237,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f7c05bf99dead592ac63d49a4a54fcb","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":142.57423,"y":303.93},"width":36.97937,"height":11.017679,"page":585}],"sectionNumber":5936,"textBefore":"compentence. Weanling female ","textAfter":" Dawley (SD)","comments":null,"startOffset":493,"endOffset":500,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cb258f6dcb05cc2302a070ea88cc8e86","type":"PII","value":"12-15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.88217,"y":203.46002},"width":26.767792,"height":11.017679,"page":585}],"sectionNumber":5936,"textBefore":"on treatment for ","textAfter":" weeks. The","comments":null,"startOffset":1229,"endOffset":1234,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787288Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"43fccac0b89ebe278407ac18757f7f66","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":99.47616,"y":102.65997},"width":40.103676,"height":10.929359,"page":585}],"sectionNumber":5936,"textBefore":"reproduction of female ","textAfter":"-Dawley rats, apart","comments":null,"startOffset":1798,"endOffset":1805,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1a2aaa6a2379ec7f9abf6a783d01a2b5","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Female reproductive segment","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":189.68959,"y":567.11},"width":37.941635,"height":10.526819,"page":585}],"sectionNumber":5933,"textBefore":"25. pp. 307-330. ","textAfter":" File No.","comments":null,"startOffset":379,"endOffset":387,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1dfac94cd0f113bffc520aa096f01ee8","type":"CBI_author","value":"Baldwin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":232.32051,"y":702.86},"width":38.19374,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":"Hope E and ","textAfter":" D (1984).","comments":null,"startOffset":3273,"endOffset":3280,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"704e46dd7c43597619fd0574e4544a94","type":"CBI_author","value":"Exon J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":476.9073,"y":601.58},"width":32.49359,"height":10.526819,"page":585}],"sectionNumber":5933,"textBefore":"Idaho, USA. Published: ","textAfter":" H. Koller","comments":null,"startOffset":168,"endOffset":175,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ec49a58190a0885a1dc19388dc5a8a98","type":"CBI_author","value":"Koller","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":280.17468,"y":613.1},"width":26.507599,"height":10.526819,"page":585}],"sectionNumber":5933,"textBefore":"Exon J.H. and ","textAfter":" L.D. (1985).","comments":null,"startOffset":36,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21b9aba1d99c8da7791978b0715baad4","type":"CBI_author","value":"Blackburn K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":421.85944,"y":664.94},"width":57.546906,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":"73, 275-283. (","textAfter":" et al,","comments":null,"startOffset":3424,"endOffset":3435,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"81e636e6e637ae8dc1183833248f95b2","type":"CBI_author","value":"Zenick H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":702.86},"width":42.43313,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3239,"endOffset":3247,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9dff1aff2ed68f1330dfd136968c88df","type":"CBI_author","value":"Hope E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.9218,"y":702.86},"width":34.49536,"height":11.017679,"page":585}],"sectionNumber":5935,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3262,"endOffset":3268,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3bb21cc0b5641e6e74a8189cc12d7f13","type":"CBI_author","value":"Exon","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Female reproductive segment","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":206.09216,"y":613.1},"width":22.035507,"height":10.526819,"page":585}],"sectionNumber":5933,"textBefore":"Report: K-CA 5.8.1/42 ","textAfter":" J.H. and","comments":null,"startOffset":22,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2c4e9421a9cf197d7aaa31b30f1a6be1","type":"PII","value":"12-14","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":216.50014,"y":178.5},"width":26.70987,"height":11.017679,"page":586}],"sectionNumber":5941,"textBefore":"group size was ","textAfter":" dams per","comments":null,"startOffset":416,"endOffset":421,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787288Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d9742dfab117a3547db876b18ea13d2","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":551.75},"width":28.467995,"height":10.018499,"page":586}],"sectionNumber":5938,"textBefore":null,"textAfter":null,"comments":null,"startOffset":113,"endOffset":120,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"325bb08f65a73de192c87788d6d6489f","type":"CBI_author","value":"Aldrich","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.77,"y":564.83},"width":28.432007,"height":10.0905,"page":586}],"sectionNumber":5938,"textBefore":null,"textAfter":" (No 75530-1)","comments":null,"startOffset":92,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a81468b38df2703dd3f5e2b2c43d79cc","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.61,"y":449.39},"width":30.528992,"height":10.0905,"page":586}],"sectionNumber":5939,"textBefore":null,"textAfter":"-Dawley","comments":null,"startOffset":33,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618821Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f4b071c5a85479c637d0de569a3e56d","type":"PII","value":"20-23","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.325,"y":338.73},"width":22.098969,"height":10.0905,"page":586}],"sectionNumber":5939,"textBefore":"Temperature: ","textAfter":" oC (68-73","comments":null,"startOffset":556,"endOffset":561,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787289Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a7ebb6cba994d793d0bccce35038d1d9","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.1526,"y":326.49},"width":40.95952,"height":10.67124,"page":587}],"sectionNumber":5955,"textBefore":"system parameters of ","textAfter":"-Dawley rats* (*rats","comments":null,"startOffset":941,"endOffset":948,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c9683cf8449e30fd65d634f8b5087f1a","type":"PII","value":"77 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-52: Summary of reproductive effects of female rats on exposure to 2,4,6-TCP. (a)\nInclusive of still born pups; (b) Non-inclusive of still born pups; (c) p<0.1 compared with controls\nby analysis of variance and least square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":169.46,"y":457.67},"width":10.059998,"height":10.0905,"page":587},{"topLeft":{"x":233.57,"y":457.67},"width":10.054001,"height":10.0905,"page":587}],"sectionNumber":5943,"textBefore":null,"textAfter":null,"comments":null,"startOffset":9,"endOffset":14,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787289Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b6c6e45270881e03363600b2b4c37130","type":"PII","value":"300 77","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-52: Summary of reproductive effects of female rats on exposure to 2,4,6-TCP. (a)\nInclusive of still born pups; (b) Non-inclusive of still born pups; (c) p<0.1 compared with controls\nby analysis of variance and least square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":92.064,"y":425.15},"width":14.619995,"height":10.0905,"page":587},{"topLeft":{"x":169.46,"y":425.15},"width":10.059998,"height":10.0905,"page":587}],"sectionNumber":5946,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78729Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1063ad5507e0dd9e67e71af2342a2662","type":"CBI_author","value":"Johansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":297.56247,"y":391.29},"width":42.075165,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":"E, Renberg L, ","textAfter":" L, Zetterqvist","comments":null,"startOffset":297,"endOffset":306,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4db1d1d9e7ed650f987e700b227c6f91","type":"CBI_author","value":"Koller","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":454.84503,"y":477.59},"width":29.129944,"height":11.017679,"page":588}],"sectionNumber":5965,"textBefore":"(Exon J.H and ","textAfter":" L.D 1985)","comments":null,"startOffset":1224,"endOffset":1230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"039eb4ec5f1fbfdc71a54823e99d98c6","type":"PII","value":"09 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.25198,"y":704.06},"width":9.937012,"height":10.0905,"page":588},{"topLeft":{"x":464.86,"y":704.06},"width":10.053986,"height":10.0905,"page":588}],"sectionNumber":5958,"textBefore":null,"textAfter":null,"comments":null,"startOffset":43,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78729Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ad8c65698d8bf77bde710f393f323c2e","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":253.64996},"width":82.55249,"height":11.017679,"page":588}],"sectionNumber":5965,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1522,"endOffset":1539,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"af3a161fdd5eb0313dfbee7f209e1690","type":"PII","value":"03 12","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.25198,"y":682.46},"width":9.937012,"height":10.0905,"page":588},{"topLeft":{"x":463.54,"y":682.46},"width":10.053986,"height":10.0905,"page":588}],"sectionNumber":5960,"textBefore":null,"textAfter":null,"comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618822Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78729Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d28eeb34ba749a23faf7bac9c0ee1a24","type":"PII","value":"300 262","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":100.22,"y":671.54},"width":14.619995,"height":10.0905,"page":588},{"topLeft":{"x":181.7,"y":671.54},"width":14.608002,"height":10.0905,"page":588}],"sectionNumber":5961,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78729Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a0855996d43ea3a3d2e6cce00831a9e2","type":"PII","value":"30 256","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":102.5,"y":682.46},"width":10.059998,"height":10.0905,"page":588},{"topLeft":{"x":181.7,"y":682.46},"width":14.608002,"height":10.0905,"page":588}],"sectionNumber":5960,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78729Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"418d195a49e3d51d2f98987815bb91e0","type":"CBI_author","value":"Arrhenius","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":182.14592,"y":391.29},"width":40.830032,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":"50, Sweden. Published: ","textAfter":" E, Renberg","comments":null,"startOffset":273,"endOffset":282,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2c7e168153d07147bc855357e3393a14","type":"CBI_author","value":"Zetterqvist M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":359.53372,"y":391.29},"width":59.246185,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":null,"textAfter":null,"comments":null,"startOffset":310,"endOffset":323,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0b22b3fecd58b58f64a8920fd9598c1d","type":"PII","value":"35-46","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.66954,"y":368.25},"width":24.430252,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":"Biol. Interactions. 18:","textAfter":". Syngenta File","comments":null,"startOffset":448,"endOffset":453,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787291Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7d995d664d90575e825a871b30ed1d75","type":"CBI_author","value":"Renberg L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":242.90192,"y":391.29},"width":47.134796,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":null,"textAfter":null,"comments":null,"startOffset":286,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2c6f4554205ed954878f05c365fabee7","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":229.67935,"y":368.25},"width":38.04129,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":"Biol. Interactions. 18:35-46. ","textAfter":" File No.","comments":null,"startOffset":455,"endOffset":463,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da14d275ef59e8175e43316f33525624","type":"CBI_author","value":"Arrhenius E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":206.44077,"y":425.75},"width":57.184357,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":"Report: K-CA 5.8.1/43 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f818f58783cd0ffb6579f291dba0624","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":170.48543,"y":628.82},"width":36.97937,"height":11.017679,"page":588}],"sectionNumber":5965,"textBefore":"reproduction of female ","textAfter":"-Dawley rats, apart","comments":null,"startOffset":209,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618823Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c671b20fed466c224e0e36ef94b4b72e","type":"CBI_author","value":"Exon","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":392.57944,"y":477.59},"width":24.30542,"height":11.017679,"page":588}],"sectionNumber":5965,"textBefore":"this study. (","textAfter":" J.H and","comments":null,"startOffset":1211,"endOffset":1215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"38c5e928094b2436233e7c8ba72c4ce1","type":"PII","value":"104 05","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.99,"y":402.69},"width":32.931824,"height":10.526819,"page":588}],"sectionNumber":5963,"textBefore":"Lilla Frescati, S-","textAfter":" Stockholm 50,","comments":null,"startOffset":233,"endOffset":239,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787291Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"466a81185d4ed43adeb8636f315161e7","type":"PII","value":"04 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: TCP. (a) P ≤ 0.05 compared with the controls by analysis of variance and least-square means","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":406.25198,"y":693.26},"width":9.937012,"height":10.0905,"page":588},{"topLeft":{"x":464.86,"y":693.26},"width":10.053986,"height":10.0905,"page":588}],"sectionNumber":5959,"textBefore":null,"textAfter":null,"comments":null,"startOffset":37,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787291Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b877e677faaa8368fcdc8d3394e2ac36","type":"CBI_author","value":"Arrhenius E","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.9137,"y":100.97998},"width":57.381287,"height":11.017679,"page":589}],"sectionNumber":5977,"textBefore":null,"textAfter":null,"comments":null,"startOffset":931,"endOffset":942,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8ba41e889d7850948243195785cc77ba","type":"PII","value":"16-20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":291.34708,"y":424.19},"width":22.116913,"height":10.0905,"page":589}],"sectionNumber":5975,"textBefore":"3 pellets until ","textAfter":" h before","comments":null,"startOffset":193,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787292Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ae4c2094e2571799cda28e7b16218736","type":"CBI_author","value":"Arrhenius E","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.938225,"y":226.26001},"width":54.632317,"height":11.017679,"page":589}],"sectionNumber":5977,"textBefore":null,"textAfter":null,"comments":null,"startOffset":327,"endOffset":338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0e40320f8f2363f2054d38e7d15c8e5a","type":"CBI_author","value":"Clark","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.66016,"y":126.29999},"width":25.58609,"height":11.017679,"page":589}],"sectionNumber":5977,"textBefore":"measured using a ","textAfter":" polarographic electrode","comments":null,"startOffset":762,"endOffset":767,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"41db81320024535074a666465c467d7b","type":"CBI_author","value":"Estabrook","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":105.44879,"y":113.70001},"width":45.623703,"height":11.017679,"page":589}],"sectionNumber":5977,"textBefore":null,"textAfter":null,"comments":null,"startOffset":801,"endOffset":810,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0c3d9bb28768c327b3877d8f6897e3ba","type":"PII","value":"150-200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.65,"y":475.67},"width":31.05101,"height":10.0905,"page":589}],"sectionNumber":5975,"textBefore":null,"textAfter":" g","comments":null,"startOffset":71,"endOffset":78,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618824Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787292Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dfdee1d4d1b5271ce55ffbe48f388e1e","type":"CBI_author","value":"Estabrook","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":432.07837,"y":238.85999},"width":45.745087,"height":11.017679,"page":589}],"sectionNumber":5977,"textBefore":null,"textAfter":null,"comments":null,"startOffset":300,"endOffset":309,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ccad71f46dd5374f209fde9030fea537","type":"PII","value":"115 000","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":495.42523,"y":200.94},"width":36.868958,"height":11.017679,"page":589}],"sectionNumber":5977,"textBefore":"and centrifuging at ","textAfter":" g for","comments":null,"startOffset":617,"endOffset":624,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787292Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"815030e83b0c98d11b065187d22dd5e6","type":"CBI_author","value":"Carlson G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.3295,"y":291.09003},"width":42.11496,"height":10.526819,"page":590}],"sectionNumber":5978,"textBefore":"47907 (U.S.A.). Published: ","textAfter":" (1978). Effect","comments":null,"startOffset":258,"endOffset":267,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"040198c49ca83010514d2a82e2f95ce9","type":"PII","value":"193 265","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":170.73935,"y":390.57},"width":36.758575,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":"J. Biol. Chem., ","textAfter":". (Arrhenius E","comments":null,"startOffset":1328,"endOffset":1335,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787293Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d496142545bb169bcd36d887aa09a3d","type":"CBI_author","value":"Arrhenius E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":440.51},"width":58.706085,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1057,"endOffset":1068,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["RULE"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8d936d0ba3556969b01a512011617519","type":"CBI_author","value":"Carlson G.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.52495,"y":314.01},"width":45.092926,"height":10.526819,"page":590}],"sectionNumber":5978,"textBefore":"Report: K-CA 5.8.1/44 ","textAfter":" (1978). Effect","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c67abce06d16ea5ddf52647dff553649","type":"CBI_author","value":"Lowry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":111.84095,"y":715.58},"width":30.388481,"height":11.017679,"page":590}],"sectionNumber":5977,"textBefore":"the method of ","textAfter":" (Lowry et","comments":null,"startOffset":1689,"endOffset":1694,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"985afcf31377ebc771078d6012dbb908","type":"CBI_author","value":"Lowry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":147.62,"y":715.58},"width":30.388489,"height":11.017679,"page":590}],"sectionNumber":5977,"textBefore":"of Lowry (","textAfter":" et al.,","comments":null,"startOffset":1696,"endOffset":1701,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"16fa3f833373ca36767eff5e7d263c86","type":"published_information","value":"Academic Press","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":241.0549,"y":465.11},"width":71.380005,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1024,"endOffset":1038,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618825Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"31819c6319df5919e6444ea0e6d8004d","type":"CBI_author","value":"Lowry O","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":403.17},"width":42.7864,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":"Interact. 1 361. ","textAfter":", Rosebrough N,","comments":null,"startOffset":1209,"endOffset":1216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d3fa9679afebd898ff19a89d02c99bae","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":134.42,"y":268.05},"width":38.051224,"height":10.526819,"page":590}],"sectionNumber":5978,"textBefore":"Rat. Toxicology l1:145-151. ","textAfter":" File No.","comments":null,"startOffset":363,"endOffset":371,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9aed746ee1268b4d79a77b5a11d1c8a9","type":"CBI_address","value":"New York","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":316.95493,"y":465.11},"width":47.21344,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":"X, Academic Press, ","textAfter":", p. 41.","comments":null,"startOffset":1040,"endOffset":1048,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7b62ea193de7e1ccfa019fbca5a3f79e","type":"CBI_author","value":"Estabrook R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":477.83},"width":56.818237,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":null,"textAfter":null,"comments":null,"startOffset":887,"endOffset":898,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["NER"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d5df85d55048cf265b5d4794a9644326","type":"PII","value":"145-151","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":490.56992,"y":279.57},"width":34.84964,"height":10.526819,"page":590}],"sectionNumber":5978,"textBefore":"Rat. Toxicology l1:","textAfter":". Syngenta File","comments":null,"startOffset":354,"endOffset":361,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787293Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ce146f93e496c65af731aee48695712c","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":290.4605,"y":153.41998},"width":82.69299,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1609,"endOffset":1626,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a59454b7e03fc6dcab125b7e06baa9cb","type":"CBI_author","value":"Rosebrough N","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":113.143684,"y":403.17},"width":66.776344,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":"361. Lowry O, ","textAfter":", Farr A","comments":null,"startOffset":1218,"endOffset":1230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"efafd35848582704d400478eb4537b0b","type":"CBI_author","value":"Farr A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":186.29474,"y":403.17},"width":31.978256,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":"O, Rosebrough N, ","textAfter":" and Randall","comments":null,"startOffset":1232,"endOffset":1238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"57cff621c8ed462219179bb37faedeb0","type":"CBI_author","value":"Arrhenius E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":424.97943,"y":365.85},"width":54.4888,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1338,"endOffset":1349,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618826Z"}],"manualChanges":[],"engines":["RULE"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7f6a33ff7056bce577d2fa7022f1d92c","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":490.19},"width":74.9128,"height":10.929359,"page":590}],"sectionNumber":5980,"textBefore":null,"textAfter":null,"comments":null,"startOffset":875,"endOffset":885,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18b044d048aea5f23c654b5e2f18c703","type":"CBI_author","value":"Randall R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":246.82707,"y":403.17},"width":47.213425,"height":11.017679,"page":590}],"sectionNumber":5980,"textBefore":"Farr A and ","textAfter":" (1951). Protein","comments":null,"startOffset":1243,"endOffset":1252,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["16fa3f833373ca36767eff5e7d263c86"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d52e4847ff7cb1e03baeb88eb74bc7ee","type":"CBI_author","value":"Arrhenius E","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":254.30113,"y":728.18},"width":56.917587,"height":11.017679,"page":590}],"sectionNumber":5977,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1621,"endOffset":1632,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4721ea08410dc97462843dca9637852c","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.65,"y":338.61},"width":30.528992,"height":10.0905,"page":591}],"sectionNumber":5983,"textBefore":null,"textAfter":"-Dawley","comments":null,"startOffset":42,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a6be5032a0dd4150380882439d30ca78","type":"CBI_author","value":"Netter","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":383.29245,"y":444.11},"width":28.412323,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"described methods (","textAfter":" et al.","comments":null,"startOffset":1135,"endOffset":1141,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"066a97c5c2e4f7c536d6281b1a2d16ca","type":"CBI_author","value":"Kinoshita","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":460.0789,"y":556.55},"width":43.90143,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"as modified by ","textAfter":" et al.","comments":null,"startOffset":513,"endOffset":522,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47ff1ae056fb6c530986307c1ad4456a","type":"CBI_author","value":"Kinoshita","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":431.39},"width":43.79104,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"1964, modified by ","textAfter":" et al.","comments":null,"startOffset":1167,"endOffset":1176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3885ad948918680e2989951f0eb9122c","type":"CBI_author","value":"Neal","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":302.15958,"y":556.55},"width":21.810425,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"described methods (","textAfter":" et al.","comments":null,"startOffset":480,"endOffset":484,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6366cb6d06b1981c5a6e059cb9c02c7a","type":"CBI_author","value":"Carlson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":337.37714,"y":519.35},"width":35.17981,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"previously described (","textAfter":" et al.","comments":null,"startOffset":662,"endOffset":669,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618827Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a8a7f1d0c942a8ec9dec70730e6b62a","type":"CBI_author","value":"Lowry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.73572,"y":494.03},"width":30.388489,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"of Lowry (","textAfter":" et al.","comments":null,"startOffset":847,"endOffset":852,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dd21bf2ca955bd9aadc84562e35ae0d7","type":"CBI_author","value":"Gerlach","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":277.78323,"y":243.53998},"width":35.65454,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2203,"endOffset":2210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed332765a7026364c73e31c0641ea021","type":"CBI_author","value":"Lowry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.9992,"y":494.03},"width":30.388489,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"the method of ","textAfter":" (Lowry et","comments":null,"startOffset":840,"endOffset":845,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64e455a752729bb6939831623087996d","type":"CBI_author","value":"Dallner","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":471.01633,"y":506.63},"width":34.2536,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":null,"textAfter":null,"comments":null,"startOffset":789,"endOffset":796,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9124b54b6fe75852cb46673fd805295b","type":"CBI_author","value":"Harper","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":351.1114,"y":218.22003},"width":31.525604,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":"glucose-6-phosphatase determinations (","textAfter":" et al.","comments":null,"startOffset":2432,"endOffset":2438,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7da7d06a48531c9248a662b2afd0cdba","type":"CBI_author","value":"Lucier","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Dosing and sample collection:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":337.91806,"y":343.53},"width":29.748169,"height":11.017679,"page":592}],"sectionNumber":6001,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1696,"endOffset":1702,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9fca373687f7f8ba68b2485fb9a0c156","type":"CBI_address","value":"New York","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":184.15297,"y":123.900024},"width":47.286484,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Analysis, Academic Press, ","textAfter":", p. 761.","comments":null,"startOffset":2275,"endOffset":2283,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"31e0d096f1ae31f1e62aab29a26e5daa","type":"CBI_author","value":"DuBois KP","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":139.16496,"y":410.25},"width":56.299377,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1037,"endOffset":1046,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618828Z"}],"manualChanges":[],"engines":["NER"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b6140c3826bc2484cfc869954db40e3f","type":"CBI_author","value":"Farr","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":193.70255,"y":248.46002},"width":19.193909,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"GH, Rosebrough NJ, ","textAfter":" AL and","comments":null,"startOffset":1692,"endOffset":1696,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65ad3f2c8f76e596f6e6f8cefbc30afd","type":"CBI_author","value":"Carlson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":323.01},"width":35.301277,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Pharmacol., 9 505. ","textAfter":" GP (1975)","comments":null,"startOffset":1361,"endOffset":1368,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f5aa82d9bc1914e296d972da3fbd5c03","type":"PII","value":"146 61","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":292.60995,"y":198.41998},"width":31.238525,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Pharmacol. Exp. Ther., ","textAfter":". Lucier GW,","comments":null,"startOffset":1956,"endOffset":1962,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787294Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"39aad7e980f1799b58fdeca74bee1b2d","type":"published_information","value":"Academic Press","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"detoxification","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":108.20881,"y":123.900024},"width":71.52354,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2259,"endOffset":2273,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93836bbb36ad3bccb2a9589836aa1567","type":"CBI_address","value":"New York","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":184.15297,"y":86.583984},"width":47.180344,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Analysis, Academic Press, ","textAfter":", p. 788.","comments":null,"startOffset":2405,"endOffset":2413,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ab3a97988f1ffceee42acadb5fa2870","type":"CBI_author","value":"DuBois KP","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":209.43457,"y":372.93},"width":53.41794,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1190,"endOffset":1199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["NER"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ff7b588a318f652cfba768c9ef088ef3","type":"CBI_author","value":"Lowry","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":248.46002},"width":30.388474,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Suppl. 166 7 ","textAfter":" GH, Rosebrough","comments":null,"startOffset":1667,"endOffset":1672,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5455a05b9c5720ae6a116a074704fc23","type":"CBI_author","value":"Randall","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":252.5678,"y":248.46002},"width":35.146713,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Farr AL and ","textAfter":" RJ (1951).","comments":null,"startOffset":1704,"endOffset":1711,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618829Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80a3612432060756a71cd92cf3a6ce95","type":"published_information","value":"Academic Press","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"detoxification","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":108.20881,"y":86.583984},"width":71.52354,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2389,"endOffset":2403,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4093f44588d39776d5502391ee5d1dc2","type":"CBI_author","value":"Netter","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":211.14001},"width":28.53376,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Chem., 193 265. ","textAfter":" KJ and","comments":null,"startOffset":1799,"endOffset":1805,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61883Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bcc682663f4c31d9a5ea7cc9291ed7f9","type":"CBI_author","value":"Dallner G","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":285.69},"width":46.406883,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1505,"endOffset":1514,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61883Z"}],"manualChanges":[],"engines":["NER"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0b5536f5d68723c45721254cd83b21d0","type":"CBI_author","value":"Matthews","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":207.63507,"y":173.82},"width":44.431366,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"McDaniel OS and ","textAfter":" HB (1971).","comments":null,"startOffset":1991,"endOffset":1999,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95df40abcae79f87bfa81d61b3df5307","type":"CBI_author","value":"McDaniel","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":121.89841,"y":173.82},"width":44.961304,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"61. Lucier GW, ","textAfter":" OS and","comments":null,"startOffset":1975,"endOffset":1983,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a3665987ec091c09bde43875418c8dd","type":"CBI_author","value":"Seidel","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":128.964,"y":211.14001},"width":28.42337,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Netter KJ and ","textAfter":" G (1964).","comments":null,"startOffset":1813,"endOffset":1819,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e5b23b2c79696bdf87444e16241f83c2","type":"PII","value":"193 265","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":170.76575,"y":235.73999},"width":36.758575,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"J. Biol. Chem., ","textAfter":". Netter KJ","comments":null,"startOffset":1790,"endOffset":1797,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787295Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d897ace685283ed25b5f38586f4aa7f7","type":"CBI_author","value":"Carlson G","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":433.49945,"y":61.960022},"width":46.02112,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"p. 788. (","textAfter":" et al,","comments":null,"startOffset":2424,"endOffset":2433,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad1d724b97a516e40f1fd7ea8fc9ff32","type":"CBI_author","value":"Lucier GW","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":173.82},"width":52.071045,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1964,"endOffset":1973,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["NER"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4ae931fe7d6b07a3b5dd5dbe21725401","type":"CBI_author","value":"Kinoshita","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":372.93},"width":43.79104,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Ther 148 185. ","textAfter":" FK, Frawley","comments":null,"startOffset":1161,"endOffset":1170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b90ee7292a4d59c1b6e156594f28961","type":"CBI_author","value":"Rosebrough","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":118.65264,"y":248.46002},"width":54.25698,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"7 Lowry GH, ","textAfter":" NJ, Farr","comments":null,"startOffset":1677,"endOffset":1687,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c74c924e986a6a51750ec018c678d64","type":"CBI_author","value":"Frawley JP","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.17023,"y":372.93},"width":52.10417,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1175,"endOffset":1185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["NER"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"899a3883f92e08bea587fed054609d7a","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"detoxification","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":422.75},"width":74.9128,"height":10.929359,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1013,"endOffset":1023,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fda7834d8f90e430e1770b94b75ebba8","type":"CBI_author","value":"Gerlach U","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":136.5},"width":46.61728,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2161,"endOffset":2170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618831Z"}],"manualChanges":[],"engines":["NER"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"77122f5abcca32e167a5242d8f9c3a8c","type":"PII","value":"148 185","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.78285,"y":397.65},"width":36.75853,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Pharmacol. Exp Ther ","textAfter":". Kinoshita FK,","comments":null,"startOffset":1152,"endOffset":1159,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618832Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787296Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2ae6e504981c289ef51815eb89b4544d","type":"CBI_author","value":"Neal","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":410.25},"width":21.810402,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"not discussed. REFERENCES: ","textAfter":" RA and","comments":null,"startOffset":1025,"endOffset":1029,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618832Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"34ced2abf53f3fc39b69933384c03ee6","type":"CBI_author","value":"Harper","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":99.17999},"width":31.547676,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"York, p. 761. ","textAfter":" AE (1965)","comments":null,"startOffset":2293,"endOffset":2299,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618832Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["80a3612432060756a71cd92cf3a6ce95","39aad7e980f1799b58fdeca74bee1b2d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"05be72b34a7c63c7da233f399ace796a","type":"PII","value":"145 520","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":477.8543,"y":161.22003},"width":36.78058,"height":11.017679,"page":593}],"sectionNumber":6009,"textBefore":"Arch. Biochem. Biophys., ","textAfter":". Gerlach U","comments":null,"startOffset":2152,"endOffset":2159,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618832Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787296Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5024901ac51d6ec76b6f0342bf722425","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"detoxification","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.29736,"y":541.55},"width":82.55249,"height":11.017679,"page":594}],"sectionNumber":6009,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2777,"endOffset":2794,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618832Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3d188721c341d5831e31667e109304e","type":"CBI_author","value":"Schwarz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":220.38235,"y":691.82},"width":35.401855,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":"Published: Götz R, ","textAfter":" L, Greim","comments":null,"startOffset":306,"endOffset":313,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618833Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9faf2d34c2ad43529500b378e2fd828","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":271.68973,"y":668.78},"width":37.94171,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":"Arch. Toxicol. 44:147-155. ","textAfter":" File No.","comments":null,"startOffset":499,"endOffset":507,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618833Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c464c596d60e2331f6d43f847a8727a4","type":"CBI_author","value":"Götz R","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.36124,"y":726.38},"width":29.704712,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":"Report: K-CA 5.8.1/45 ","textAfter":".et al., (1980).","comments":null,"startOffset":22,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618833Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bc89685abf1f279d865833cdd23bb052","type":"CBI_author","value":"Götz R","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":181.1798,"y":691.82},"width":32.46364,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":null,"textAfter":null,"comments":null,"startOffset":298,"endOffset":304,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618833Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed757f5e7d06d8d1094133abe65bd87c","type":"PII","value":"(50-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":113.41103,"y":405.69},"width":35.808983,"height":11.017679,"page":594}],"sectionNumber":6010,"textBefore":"liver cells. 2,4,6-TCP ","textAfter":" µM) interferes","comments":null,"startOffset":298,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618833Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787296Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3f4719a6913486a9f6b0f705a8a3c591","type":"PII","value":"147-155","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.21083,"y":668.78},"width":34.409256,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":"Arch. Toxicol. 44:","textAfter":". Syngenta File","comments":null,"startOffset":490,"endOffset":497,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618833Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787296Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"352fe4b85c0761c87d8d544486c3ea95","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: detoxification","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":482.47107,"y":703.34},"width":38.23047,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":"Federal Republic of ","textAfter":". Published: Götz","comments":null,"startOffset":278,"endOffset":285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"946ed0e245167a1a49f209b663c48fff","type":"CBI_author","value":"Greim","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: detoxification","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.84766,"y":691.82},"width":26.607147,"height":10.526819,"page":594}],"sectionNumber":6007,"textBefore":"R, Schwarz L, ","textAfter":" H (1980).","comments":null,"startOffset":317,"endOffset":322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d21c26f6f4b1021f588a096d5e7a93b9","type":"CBI_author","value":"Baur","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":99.089775,"y":314.49},"width":22.318237,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":"described earlier (","textAfter":" et al.,","comments":null,"startOffset":274,"endOffset":278,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f308db392cdee16b06694153f60e81a7","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":225.71857,"y":339.69},"width":37.273193,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":"isolated from male ","textAfter":" Dawley rats,","comments":null,"startOffset":93,"endOffset":100,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"41e09bae4f2a4fd4af290f680a39eb48","type":"CBI_author","value":"Sardini","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":75.49728,"y":87.42401},"width":32.728966,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1854,"endOffset":1861,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"778525925e1e1e20e571deb67fc895d3","type":"CBI_author","value":"Schwenk","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.04848,"y":327.09003},"width":41.174576,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":null,"textAfter":null,"comments":null,"startOffset":185,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"29c29d7c371448c3d4507b91b373ee99","type":"CBI_author","value":"Baur","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":435.4523,"y":339.69},"width":22.417603,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":"previously described (","textAfter":" et al.,","comments":null,"startOffset":139,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b982495dd81bb3e2408b77f564c20778","type":"CBI_author","value":"Leibowitz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.71786,"y":251.85004},"width":45.759003,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":"at 37°C in ","textAfter":" L-15 medium","comments":null,"startOffset":608,"endOffset":617,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"56bdf5e335c452d5d524e46b7a40bb5a","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.65,"y":576.71},"width":30.528992,"height":10.0905,"page":595}],"sectionNumber":6013,"textBefore":null,"textAfter":" Dawley","comments":null,"startOffset":42,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1adc927a902bb9997d488bc1188b846d","type":"PII","value":"50-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":464.65527,"y":264.69},"width":32.164703,"height":11.017679,"page":596}],"sectionNumber":6019,"textBefore":"at concentrations from ","textAfter":" µM. At","comments":null,"startOffset":1868,"endOffset":1874,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787297Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e572d5a5868b468a24afb40679d5d52e","type":"CBI_author","value":"Clark","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":358.1434,"y":652.34},"width":25.46463,"height":11.017679,"page":596}],"sectionNumber":6016,"textBefore":"measured with a ","textAfter":" oxygen electrode","comments":null,"startOffset":2734,"endOffset":2739,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"596f9a6ec3ab1c9ae5a0dff216fc11fa","type":"CBI_author","value":"Szarkowska","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":360.8813,"y":677.66},"width":54.00305,"height":11.017679,"page":596}],"sectionNumber":6016,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2539,"endOffset":2549,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4601738847feaa7377e81fad6b9e5ab2","type":"CBI_author","value":"Baur","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":327.62875,"y":101.58002},"width":22.417603,"height":11.017679,"page":596}],"sectionNumber":6019,"textBefore":"cells completely (","textAfter":" et al.,","comments":null,"startOffset":2839,"endOffset":2843,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b087b9d5af198d90fb006ecc9413681a","type":"CBI_author","value":"Baur","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":690.26},"width":22.417595,"height":11.017679,"page":596}],"sectionNumber":6016,"textBefore":"Triton X-100 (","textAfter":" et al.,","comments":null,"startOffset":2381,"endOffset":2385,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5bacdcb2d6ffb025d8d5b801adba6cf2","type":"CBI_author","value":"Klaassen","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":252.95427,"y":740.9},"width":40.79918,"height":11.017679,"page":596}],"sectionNumber":6016,"textBefore":"the method of ","textAfter":" and Plaa","comments":null,"startOffset":2013,"endOffset":2021,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e51cd6b510da01b542c9c3bb5545dc9","type":"CBI_author","value":"Heil J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":197.31741,"y":389.97},"width":27.5932,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":"Report: K-CA 5.8.1/46 ","textAfter":" and Reifferscheid","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["8ff37088e8722f821b2bc4c59d0b8f7c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0938e0a9b96b2cca10432409ce026cfd","type":"PII","value":"213-224","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":133.19229,"y":541.07},"width":37.627716,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"Appl. Pharmacol. 32, ","textAfter":" Schwenk M,","comments":null,"startOffset":3877,"endOffset":3884,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787298Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b58afaf5988fdb8e4668117ea469c4af","type":"CBI_author","value":"Marzo A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":206.93611,"y":591.02},"width":41.47264,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3664,"endOffset":3671,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618835Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5806ebb95bc763fff202697dff4e9203","type":"CBI_author","value":"Plan G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":134.84833,"y":628.34},"width":38.83409,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3509,"endOffset":3515,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"08cfbfb216951b14866d35a5d0c88066","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.33,"y":217.85999},"width":82.530426,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4395,"endOffset":4412,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"03289f8d18d37592f3f61d6f355b629d","type":"CBI_author","value":"Kasperek S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":102.114716,"y":702.86},"width":51.640472,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3231,"endOffset":3241,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"754f1d46c11f8dbe4a9b103d20048c6c","type":"PII","value":"2389-2394","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":207.8228,"y":332.49},"width":44.53659,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":"test. Carcinogenesis l3:","textAfter":". Syngenta File","comments":null,"startOffset":473,"endOffset":482,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787298Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c727f5b52566cbdbe3c933cc84814f3b","type":"CBI_author","value":"Heil","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":378.1788,"y":355.41},"width":18.151154,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":"Mainz, Germany. Published: ","textAfter":" J and","comments":null,"startOffset":332,"endOffset":336,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8ff37088e8722f821b2bc4c59d0b8f7c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb8f332de1713398c4bafd3241db67b9","type":"CBI_author","value":"Klaassen","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":628.34},"width":40.799202,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"Weinheim: Verlag Chemie ","textAfter":" C, Plan","comments":null,"startOffset":3497,"endOffset":3505,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ac489a14586a1f7101b6238f47afa77","type":"PII","value":"827-838","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":115.46207,"y":690.26},"width":37.597946,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"Physiol. Chem. 356:","textAfter":" Bergmeyer U,","comments":null,"startOffset":3342,"endOffset":3349,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787299Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db8cac42f6c4b92ef9159c0c819b44e7","type":"CBI_author","value":"Reifferscheid G.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":244.53778,"y":389.97},"width":67.51294,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":"Heil J. and ","textAfter":" (1992). Detection","comments":null,"startOffset":34,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["8ff37088e8722f821b2bc4c59d0b8f7c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7251477851ca300b20f35a26979ca003","type":"PII","value":"189-197","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":154.56577,"y":503.75},"width":37.614243,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"J. Biochem. 64:","textAfter":" Szarkowska L,","comments":null,"startOffset":4006,"endOffset":4013,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618836Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787299Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f5ba7f625ab26ff434c9e1e559992ed6","type":"CBI_address","value":"Germany","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":285.42117,"y":355.41},"width":38.24048,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":"63, 6500 Mainz, ","textAfter":". Published: Heil","comments":null,"startOffset":312,"endOffset":319,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8ff37088e8722f821b2bc4c59d0b8f7c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f9e7fa36cd0844810f05c4d755f2b3c","type":"CBI_author","value":"Schwarz","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.08142,"y":516.35},"width":38.767868,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"M, Burr R, ","textAfter":" L, Pfaff","comments":null,"startOffset":3904,"endOffset":3911,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"269e7e3bac76d8b8ec44f8b62caed8d0","type":"CBI_author","value":"Sardini D","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":591.02},"width":44.604645,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3633,"endOffset":3642,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8ff37088e8722f821b2bc4c59d0b8f7c","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":133.82,"y":332.49},"width":61.97513,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":null,"textAfter":null,"comments":null,"startOffset":455,"endOffset":469,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"20a29d143fbd434181997bbf19d9873c","type":"CBI_author","value":"Schwenk M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":516.35},"width":54.850563,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3885,"endOffset":3894,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1c6c50c2d1c6aa57f7845d70e9595f87","type":"CBI_author","value":"Götz R","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":446.96945,"y":441.83},"width":32.475037,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4121,"endOffset":4127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d4355c7b85dcc1dbb0cbc0a5dfa05df1","type":"CBI_author","value":"Pfaff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":216.65213,"y":516.35},"width":23.024796,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"R, Schwarz L, ","textAfter":" E (1976).","comments":null,"startOffset":3915,"endOffset":3920,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75165af1bdcbfb078089aef125222031","type":"CBI_author","value":"Baur","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":702.86},"width":22.417595,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"the cells. REFERENCES: ","textAfter":" H, Kasperek","comments":null,"startOffset":3223,"endOffset":3227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"41b1d05d1e7bf59e73f0235d1e327203","type":"CBI_author","value":"Czok G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":113.64047,"y":553.67},"width":34.88176,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3769,"endOffset":3775,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"073d77faaeac86f645020577026be3c8","type":"CBI_author","value":"Klingenberg M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":132.46367,"y":479.15},"width":68.60898,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4028,"endOffset":4041,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"672d311f6bccac0c39c6639f95f5f5da","type":"CBI_author","value":"Bergmeyer U","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":665.66},"width":61.874557,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3350,"endOffset":3361,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e75fec8ea8b8031586ed47457293bd50","type":"CBI_author","value":"Barbi G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":114.24432,"y":591.02},"width":37.277435,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3644,"endOffset":3651,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"767ce494a589f6195b796cc5c5fe22fe","type":"CBI_author","value":"Bergmeyer, H. U.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.0668,"y":665.66},"width":82.08884,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3417,"endOffset":3433,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed45a97a4eaf377ed50173cbaf34727c","type":"CBI_author","value":"Hoppe","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":414.8227,"y":702.86},"width":30.267029,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"isolated liver cells. ","textAfter":"-Seylers Z. Physiol.","comments":null,"startOffset":3306,"endOffset":3311,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f51401e2b068700c16dde90a48f42a7","type":"CBI_author","value":"Szarkowska L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":479.15},"width":63.64096,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4014,"endOffset":4026,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"26cfe4b6ee378b90a2d017d6c51b373f","type":"CBI_author","value":"Reifferscheid G","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":424.44308,"y":355.41},"width":65.610596,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":null,"textAfter":null,"comments":null,"startOffset":343,"endOffset":358,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618838Z"}],"manualChanges":[],"engines":["NER"],"reference":["8ff37088e8722f821b2bc4c59d0b8f7c"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"66b42bd4f741bdb7fda04185563cf1c3","type":"PII","value":"1322-1326","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":251.08844,"y":615.62},"width":48.761505,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"J. Physiol. 213:","textAfter":" Sardini D,","comments":null,"startOffset":3623,"endOffset":3632,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.7873Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e560691144c13032dc476af9b3bf621b","type":"CBI_author","value":"Bastoni F","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":156.93597,"y":591.02},"width":44.552795,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3653,"endOffset":3662,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"120bac949ccde338210a091e26a2f981","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":715.34},"width":74.9128,"height":10.929359,"page":597}],"sectionNumber":6019,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3211,"endOffset":3221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1ca7926b61e50847b43cace7dd908f18","type":"CBI_author","value":"Burr","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":124.44608,"y":516.35},"width":21.103844,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"213-224 Schwenk M, ","textAfter":" R, Schwarz","comments":null,"startOffset":3896,"endOffset":3900,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"86acda36ec8a92795c0a3470f863c64b","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.8294,"y":332.49},"width":38.05127,"height":10.526819,"page":597}],"sectionNumber":6017,"textBefore":"test. Carcinogenesis l3:2389-2394. ","textAfter":" File No.","comments":null,"startOffset":484,"endOffset":492,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8ff37088e8722f821b2bc4c59d0b8f7c"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"52be00eabf13f733be82a393e5c554f0","type":"CBI_author","value":"Pfaff","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":158.48494,"y":702.86},"width":23.024796,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"H, Kasperek S, ","textAfter":" E (1975).","comments":null,"startOffset":3243,"endOffset":3248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8fe26c8ea56a666d9414b842ac9a666b","type":"CBI_address","value":"Merck","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the test described, 2,4,6-TCP did not cause a greater than 50% inhibition of\nDNA synthesis over the concentration range tested.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":258.83902,"y":565.19},"width":24.45401,"height":10.0905,"page":598}],"sectionNumber":6021,"textBefore":"Not defined (","textAfter":", Darmstadt or","comments":null,"startOffset":127,"endOffset":132,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51019b96f02baab65bade25629afebe1","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the test described, 2,4,6-TCP did not cause a greater than 50% inhibition of\nDNA synthesis over the concentration range tested.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":413.60312,"y":565.19},"width":34.524963,"height":10.0905,"page":598}],"sectionNumber":6021,"textBefore":"or Sigma, Deisenhofen, ","textAfter":")","comments":null,"startOffset":167,"endOffset":174,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"facbde7e9800024384ffcc7d69024955","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":320.86896,"y":133.26001},"width":62.07483,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":null,"textAfter":null,"comments":null,"startOffset":136,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618839Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"13de2765d649ada901d0f874efd7940f","type":"CBI_author","value":"Heil","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":380.09946,"y":196.62},"width":19.900482,"height":11.017679,"page":599}],"sectionNumber":6029,"textBefore":"range tested. (","textAfter":" J and","comments":null,"startOffset":456,"endOffset":460,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0db4dca160e65db471b017b78c3a2f91","type":"CBI_author","value":"Brown J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":244.98677,"y":144.77997},"width":38.36,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":"5.8.1/47 Kitchin K. ","textAfter":" (1994). Dose-Response","comments":null,"startOffset":33,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["facbde7e9800024384ffcc7d69024955"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dec36d15b6624cf26429bf06d7b36596","type":"CBI_address","value":"Bio Cell Consulting, Reinach, Switzerland","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"Immunological assay:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":109.544624,"y":690.26},"width":190.34705,"height":11.017679,"page":599}],"sectionNumber":6026,"textBefore":null,"textAfter":null,"comments":null,"startOffset":325,"endOffset":366,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"74e44945633670a26fc367f27acc7d4c","type":"CBI_author","value":"Reifferscheidt G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":427.4721,"y":196.62},"width":73.853,"height":11.017679,"page":599}],"sectionNumber":6029,"textBefore":null,"textAfter":null,"comments":null,"startOffset":467,"endOffset":483,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6c881e353b842bdd46931dec423c7de9","type":"PII","value":"31-49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":195.08394,"y":87.18402},"width":24.415863,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":"carcinogens. Toxicology 88:","textAfter":". Syngenta File","comments":null,"startOffset":455,"endOffset":460,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787301Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ae0e06953981550785752fb9994adb43","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":226.07936,"y":87.18402},"width":38.150833,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":"carcinogens. Toxicology 88:31-49. ","textAfter":" File No.","comments":null,"startOffset":462,"endOffset":470,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["facbde7e9800024384ffcc7d69024955"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4655c90410ebab23bfecd3ac128008f","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":393.81393,"y":110.22003},"width":31.039429,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":"27711, USA. Published: ","textAfter":" K and","comments":null,"startOffset":325,"endOffset":332,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["facbde7e9800024384ffcc7d69024955"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a9f84edc7ae497d1c215bdd704b405e","type":"CBI_author","value":"Brown","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":455.17758,"y":110.22003},"width":28.151001,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":"Kitchin K and ","textAfter":" J (1994).","comments":null,"startOffset":339,"endOffset":344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["facbde7e9800024384ffcc7d69024955"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"020e1beaae911b39bf76f3fe76b8cbac","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":198.34412,"y":144.77997},"width":30.83017,"height":10.526819,"page":599}],"sectionNumber":6027,"textBefore":"Report: K-CA 5.8.1/47 ","textAfter":" K. Brown","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61884Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["facbde7e9800024384ffcc7d69024955"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7bd7200516ebd7d5cb74e670ae28cb80","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":679.58},"width":82.68771,"height":11.017679,"page":600}],"sectionNumber":6029,"textBefore":null,"textAfter":null,"comments":null,"startOffset":774,"endOffset":791,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"72d4d75a07b1caea7b68f0756cc90e8d","type":"CBI_address","value":"Charles River Laboratories","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the conditions of the reported study, 2,4,6-TCP was not found to induce DNA damage in rat\nlivers at a concentration of 500 mg/kg as measured using rat hepatic DNA damage assay.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.65,"y":179.34003},"width":98.42502,"height":10.0905,"page":600}],"sectionNumber":6032,"textBefore":null,"textAfter":null,"comments":null,"startOffset":103,"endOffset":129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"baabbc67da5302259cc338f37e5c9581","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the conditions of the reported study, 2,4,6-TCP was not found to induce DNA damage in rat\nlivers at a concentration of 500 mg/kg as measured using rat hepatic DNA damage assay.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":213.65,"y":205.02002},"width":30.528992,"height":10.0905,"page":600}],"sectionNumber":6032,"textBefore":null,"textAfter":"-Dawley (CD)","comments":null,"startOffset":42,"endOffset":49,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bcb5fd1c7c67a9f0fcaba85630cc5204","type":"CBI_author","value":"Becker","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":161.51169,"y":465.11},"width":32.000336,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"The Stout and ","textAfter":" (Stout and","comments":null,"startOffset":1491,"endOffset":1497,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f0c7e0bcd06518b90f8a5de0e4f1a553","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":182.10004},"width":34.097916,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"dosed control. REFERENCES: ","textAfter":" K and","comments":null,"startOffset":456,"endOffset":463,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"474d1c285ce120b331aa303085e4aa78","type":"CBI_author","value":"Ewig R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":111.56495,"y":144.77997},"width":37.619667,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":625,"endOffset":631,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["NER"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a6bf6de554f324c7a17915f8a262a02e","type":"CBI_author","value":"Marcel","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":308.21,"y":132.18},"width":32.243225,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"Friedberg, eds.) (","textAfter":"-Dekker, New York,","comments":null,"startOffset":759,"endOffset":765,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e2a4d95de0cfb934627227a6e9c85a36","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":130.75247,"y":169.5},"width":68.16737,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":576,"endOffset":590,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9e76a5216474d07fff89c8282f3ab89","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":194.58002},"width":74.9128,"height":10.929359,"page":601}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":444,"endOffset":454,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"866f3d6d1826954ba56b7002fdb0b24b","type":"CBI_author","value":"Becker","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.94171,"y":465.11},"width":32.121796,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"Becker (Stout and ","textAfter":", 1982) modification","comments":null,"startOffset":1509,"endOffset":1515,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8fa4343d8f982d4832bac1d55639c595","type":"PII","value":"302-307","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":341.39566,"y":94.86401},"width":37.79431,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"Analytical Biochemistry 127:","textAfter":". Nicolini C,","comments":null,"startOffset":969,"endOffset":976,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787302Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"597d6b8c2b16093633d6e1160613ae2e","type":"CBI_author","value":"Nicolini","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":113.364494,"y":439.91},"width":37.05665,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"SDSlysis step (","textAfter":" et. al","comments":null,"startOffset":1685,"endOffset":1693,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25b0ca51b7eb0bcf1ae581ba3eec3876","type":"CBI_author","value":"Potter","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":98.15136,"y":527.75},"width":27.352486,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"a size C ","textAfter":"-Elvehjem homogenizer (clearance","comments":null,"startOffset":1180,"endOffset":1186,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"225233d86d4c2c0d026a9353d4243166","type":"CBI_author","value":"Kohn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":452.3392,"y":465.11},"width":25.46463,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"et al (","textAfter":" et al,","comments":null,"startOffset":1555,"endOffset":1559,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e12a638bea71f2753bb5185c1793c2a9","type":"CBI_author","value":"Stout","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":116.06,"y":465.11},"width":24.228165,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"Brown, 1989). The ","textAfter":" and Becker","comments":null,"startOffset":1481,"endOffset":1486,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"45b04ebf633dacd79a19a06d9a81a885","type":"CBI_author","value":"Kohn","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":144.77997},"width":25.586067,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"and Mutagenesis; 9:61-69. ","textAfter":" K, Ewig","comments":null,"startOffset":617,"endOffset":621,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59ddd6e27c64625d56e1f5bd7ca96dc6","type":"CBI_author","value":"Becker","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":120.58463,"y":107.58002},"width":32.121758,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"Stout D and ","textAfter":" F (1982).","comments":null,"startOffset":816,"endOffset":822,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aca4c48fc981cf05b83399eae645396b","type":"CBI_author","value":"Kitchin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.93228,"y":477.83},"width":34.0979,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"reported study (","textAfter":" and Brown,","comments":null,"startOffset":1451,"endOffset":1458,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b50ccb56ce25e075009210ed8090663","type":"CBI_author","value":"Erickson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":157.00557,"y":144.77997},"width":40.20305,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"K, Ewig R, ","textAfter":" L and","comments":null,"startOffset":633,"endOffset":641,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7bd05af175fbe212477a82bb99675cf3","type":"PII","value":"379-401","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":480.26828,"y":132.18},"width":37.671722,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"York, 1981), pp. ","textAfter":". Stout D","comments":null,"startOffset":795,"endOffset":802,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787302Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d9de45e203cc5f195ec4f80ce5a910a","type":"PII","value":"61-69","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":289.23172,"y":169.5},"width":26.698273,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"and Mutagenesis; 9:","textAfter":". Kohn K,","comments":null,"startOffset":610,"endOffset":615,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787303Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d8d845696c2aef54a6aa45840573acf1","type":"CBI_author","value":"Stout","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":107.58002},"width":24.316475,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"1981), pp. 379-401. ","textAfter":" D and","comments":null,"startOffset":804,"endOffset":809,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c09bcb152c0fe71483918369a11be24","type":"CBI_address","value":"New York","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":380.94138,"y":132.18},"width":47.18033,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"Friedberg, eds.) (Marcel-Dekker, ","textAfter":", 1981), pp.","comments":null,"startOffset":774,"endOffset":782,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6f281cbc62a1152ca7b9e0f9816c9f4c","type":"CBI_author","value":"Stout","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.49,"y":465.11},"width":24.22818,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"and Becker (","textAfter":" and Becker,","comments":null,"startOffset":1499,"endOffset":1504,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618843Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c1781d698f3e89a7f6d8d81626bd3556","type":"CBI_author","value":"Kohn","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.88348,"y":465.11},"width":25.58606,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"modification of the ","textAfter":" et al","comments":null,"startOffset":1543,"endOffset":1547,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3d2b112409d6d0c19e3236515e9c979e","type":"CBI_author","value":"Kitchin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":443.6261,"y":578.39},"width":34.0979,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"reported study (","textAfter":" and Brown,","comments":null,"startOffset":851,"endOffset":858,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2401b7fea9c17f6e22a215af54ac2aab","type":"CBI_author","value":"Brown J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":129.9134,"y":182.10004},"width":40.788147,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":"Kitchin K and ","textAfter":" (1989). Biochemical","comments":null,"startOffset":470,"endOffset":478,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d6824f30a854f94cbd305697c23ba322","type":"CBI_author","value":"Hanawalt and E. C. Friedberg","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":143.98941,"y":132.18},"width":132.36496,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":722,"endOffset":750,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["NER"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6128ef45c96ff4268da60576c267a176","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":219.28224,"y":169.5},"width":56.54225,"height":11.017679,"page":601}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":595,"endOffset":606,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"76809c54eac86ae540e2ebb767c1c526","type":"CBI_author","value":"Pino A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":176.09375,"y":753.5},"width":32.47505,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1002,"endOffset":1008,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["NER"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5047eda72a3fd4d18e44fe89177b8f16","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":124.61426,"y":240.77997},"width":35.886414,"height":10.929359,"page":602}],"sectionNumber":6038,"textBefore":"the livers of ","textAfter":" rats. 2,4,6-TCP","comments":null,"startOffset":901,"endOffset":908,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"291023627d19a64c108d003ba8891f0d","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.21124,"y":468.11},"width":82.55249,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1476,"endOffset":1493,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aa334b58f0cf3a53ff60157626f3d7d3","type":"CBI_author","value":"Robbiano L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":116.963524,"y":753.5},"width":54.047203,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":990,"endOffset":1000,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618844Z"}],"manualChanges":[],"engines":["NER"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31a0363aab11e9986165b1efbc14e7c1","type":"CBI_author","value":"Pereira M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.72772,"y":651.74},"width":45.22159,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"Report: K-CA 5.8.1/48 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bc35aae2e654624c6f15b592d20db842","type":"CBI_author","value":"Kitchin","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":398.45944,"y":703.58},"width":34.0979,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":"6: 385-389. (","textAfter":" K and","comments":null,"startOffset":1212,"endOffset":1219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2df202d30a6052fa3128d282fcbcdca","type":"CBI_author","value":"Brown","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.56235,"y":703.58},"width":30.896301,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":"(Kitchin K and ","textAfter":" J, 1994)","comments":null,"startOffset":1226,"endOffset":1231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80648cfdc8c27b51e5c64843dd88044a","type":"CBI_author","value":"Herren S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":461.35342,"y":617.18},"width":37.463562,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"Published: Periera M, ","textAfter":", Britt A,","comments":null,"startOffset":360,"endOffset":368,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5dade8a1b10446c104f2b0eb90c4a234","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":86.15088,"y":728.18},"width":68.15633,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1184,"endOffset":1198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d06fe6dbe691a9581f6b70526358b9d","type":"CBI_author","value":"Nicolini","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":753.5},"width":37.0456,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":"Analytical Biochemistry 127:302-307. ","textAfter":" C, Robbiano","comments":null,"startOffset":978,"endOffset":986,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aafb5f7aa4a2ce5a2707c58b15af628a","type":"CBI_author","value":"Khoury M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":152.88345,"y":605.78},"width":49.89366,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"S, Britt A, ","textAfter":" (1982). Initiation/promotion","comments":null,"startOffset":379,"endOffset":387,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1e11198f73a674aec37a3624e11507c1","type":"PII","value":"11-18","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":158.24191,"y":582.71},"width":24.387878,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"Toxicological Pathology 10(2):","textAfter":". Syngenta File","comments":null,"startOffset":555,"endOffset":560,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787304Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dcb32c1b3e5004e8878abedbd02f7f20","type":"CBI_author","value":"Periera M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":415.09924,"y":617.18},"width":41.487366,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"Ohio 45268. Published: ","textAfter":", Herren S,","comments":null,"startOffset":349,"endOffset":358,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618845Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1fe1ebe421ca083ef77787ccd83d073a","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Only data and discussion relevant to the testing of 2,4,6-TCP is discussed in this document.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":458.0976,"y":367.53},"width":36.968292,"height":11.017679,"page":602}],"sectionNumber":6038,"textBefore":"liver of male ","textAfter":" Dawley rats","comments":null,"startOffset":219,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d31c5cbae314e39a616be099dc5dbbaf","type":"PII","value":"385-389","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":167.37216,"y":728.18},"width":37.557846,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":"rate. Carcinogenesis 6: ","textAfter":". (Kitchin K","comments":null,"startOffset":1202,"endOffset":1209,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787304Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9b2ff7d68fbda60be1ebcd5226cac964","type":"CBI_author","value":"Maura A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":213.6187,"y":753.5},"width":41.40219,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1010,"endOffset":1017,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["NER"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"07b75bb26dc0e3e8934de07d703cfead","type":"CBI_author","value":"Finollo R","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":260.0708,"y":753.5},"width":43.503967,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1019,"endOffset":1028,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["NER"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f0059228f2547c8afb3f4fddcc600fe6","type":"CBI_author","value":"Brambilla","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":325.1847,"y":753.5},"width":45.005432,"height":11.017679,"page":602}],"sectionNumber":6037,"textBefore":"Finollo R and ","textAfter":" G (1985).","comments":null,"startOffset":1033,"endOffset":1042,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6128ef45c96ff4268da60576c267a176","5dade8a1b10446c104f2b0eb90c4a234","e2a4d95de0cfb934627227a6e9c85a36"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bcdb5562aa5299461e436ec01f39b06a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":189.20935,"y":582.71},"width":37.931686,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"Toxicological Pathology 10(2):11-18. ","textAfter":" File No.","comments":null,"startOffset":562,"endOffset":570,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"edd9b268d1ff973ac741ffc9ef3df17e","type":"CBI_author","value":"Britt A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":503.55392,"y":617.18},"width":19.36618,"height":10.526819,"page":602},{"topLeft":{"x":133.82,"y":605.78},"width":8.191116,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"M, Herren S, ","textAfter":", Khoury M","comments":null,"startOffset":370,"endOffset":377,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4a00347b0c61e7ce240946147042b9f","type":"CBI_author","value":"St. Clair","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":198.99696,"y":617.18},"width":34.913803,"height":10.526819,"page":602}],"sectionNumber":6035,"textBefore":"Agency, 26 W. ","textAfter":" Street, Cincinnati,","comments":null,"startOffset":296,"endOffset":305,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f70daf9a6281917feb13a3371bef79d","type":"PII","value":"175-200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.89,"y":627.38},"width":31.050995,"height":10.0905,"page":603}],"sectionNumber":6040,"textBefore":null,"textAfter":" g at","comments":null,"startOffset":106,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618846Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787304Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dfdce903c41584fb97714086c725d6f1","type":"CBI_author","value":"Herren","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.7093,"y":304.05},"width":31.558731,"height":11.017679,"page":603}],"sectionNumber":6045,"textBefore":null,"textAfter":null,"comments":null,"startOffset":233,"endOffset":239,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c081451d0d48ced1d7e91ad3e58feefb","type":"CBI_author","value":"Rutenburg","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":178.73233,"y":190.14001},"width":47.423218,"height":11.017679,"page":603}],"sectionNumber":6045,"textBefore":null,"textAfter":null,"comments":null,"startOffset":936,"endOffset":945,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a5ec82f81c587d92c03808a88f36873e","type":"CBI_author","value":"Ford","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":482.52322,"y":215.46002},"width":21.74414,"height":11.017679,"page":603}],"sectionNumber":6045,"textBefore":"previously described (","textAfter":" et al.,","comments":null,"startOffset":797,"endOffset":801,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"61084b646d70590c76890fee72cbc80a","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":210.89,"y":614.54},"width":50.65303,"height":10.0905,"page":603}],"sectionNumber":6040,"textBefore":null,"textAfter":" Co. (Portgage,","comments":null,"startOffset":133,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4fa5f728dd6222ad77224b2129e21841","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":210.89,"y":640.22},"width":27.505005,"height":10.0905,"page":603}],"sectionNumber":6040,"textBefore":null,"textAfter":" 344; Wistar-lewis","comments":null,"startOffset":40,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a85f01423015770cf11216e29b7c36e0","type":"CBI_author","value":"Ford","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":304.05},"width":21.854553,"height":11.017679,"page":603}],"sectionNumber":6045,"textBefore":"in detail (","textAfter":" et al.,","comments":null,"startOffset":211,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"84794ca54c6347d13c3fc35b5bfd6948","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":191.11919,"y":465.35},"width":37.089783,"height":11.017679,"page":603}],"sectionNumber":6041,"textBefore":"hepatic biochemical studies, ","textAfter":" Dawley rats","comments":null,"startOffset":900,"endOffset":907,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618847Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5aaf9cf7ef57e4b03398cedb57587b15","type":"CBI_author","value":"Fischer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":373.5772,"y":490.55},"width":33.325134,"height":11.017679,"page":603}],"sectionNumber":6041,"textBefore":"section describes that ","textAfter":" F344 male","comments":null,"startOffset":738,"endOffset":745,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ba5f3877d5c08360c849ce3cca84076b","type":"CBI_author","value":"Herren","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":110.63758,"y":202.85999},"width":31.448326,"height":11.017679,"page":603}],"sectionNumber":6045,"textBefore":null,"textAfter":null,"comments":null,"startOffset":819,"endOffset":825,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a0a25c1f41b7d61c61396c4424eec3a6","type":"CBI_author","value":"Rutenburg","reason":"Author found","matchedRule":14,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":124.890236,"y":190.14001},"width":47.423225,"height":11.017679,"page":603}],"sectionNumber":6045,"textBefore":null,"textAfter":null,"comments":null,"startOffset":925,"endOffset":934,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d581fbdd5680ad250f95f17b467a7a57","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":321.37997,"y":640.22},"width":30.412018,"height":10.0905,"page":603}],"sectionNumber":6040,"textBefore":"344; Wistar-lewis and ","textAfter":" Dawley","comments":null,"startOffset":70,"endOffset":77,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a1dd41f22d015b8491f4d78ef6681b1","type":"CBI_author","value":"Morgan M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":478.41638,"y":326.97003},"width":44.256348,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"E, Stober J, ","textAfter":" and Periera","comments":null,"startOffset":273,"endOffset":281,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f11a7cb48a6ae2864033d76369b3ba11","type":"CBI_author","value":"Fishbein","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.192,"y":440.39},"width":39.132187,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"A, Kim H, ","textAfter":" J, Hanker","comments":null,"startOffset":1270,"endOffset":1278,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b20475fcf7a2eadf39afa8479c74f67","type":"CBI_author","value":"Toledo","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":170.11424,"y":326.97003},"width":29.475616,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"College of Ohio, ","textAfter":", Ohio 43614.","comments":null,"startOffset":199,"endOffset":205,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"66dee03acdc58e818589c5fd3bf6f440","type":"CBI_author","value":"Pereira M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":434.69943,"y":389.85},"width":44.74051,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"17:517- 522. (","textAfter":" et al,","comments":null,"startOffset":1448,"endOffset":1457,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618848Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f42e072c1e823ccf14facb6acb91428d","type":"CBI_author","value":"Britt A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":161.94049,"y":478.31},"width":32.58545,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"S, Pereira M, ","textAfter":", Khoury M","comments":null,"startOffset":1131,"endOffset":1138,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ef28e2b2e8fb1009cd5df0f83d832dd5","type":"CBI_author","value":"Kim","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":131.02847,"y":440.39},"width":20.7285,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"12143-150. Rutenburg A, ","textAfter":" H, Fishbein","comments":null,"startOffset":1263,"endOffset":1266,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e65dcd1cebce445b0e2b925845c23141","type":"CBI_author","value":"Greisiger E","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.03522,"y":326.97003},"width":47.01526,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"G, Conran P, ","textAfter":", Stober J,","comments":null,"startOffset":250,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"05314ad7d24d458b95f250e5a38b481b","type":"CBI_author","value":"Ford","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":516.35},"width":21.854553,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"the study. REFERENCES: ","textAfter":" J, Pereira","comments":null,"startOffset":976,"endOffset":980,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4b18da18020c41bdb83d5b2dfc80478","type":"CBI_author","value":"Herren S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":478.31},"width":41.428482,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"Patho. Toxicol. 4:39-46. ","textAfter":", Pereira M,","comments":null,"startOffset":1110,"endOffset":1118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c6cb0d447dcd8248a5d189ff0987344","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":363.96515,"y":702.62},"width":40.949585,"height":10.67124,"page":604}],"sectionNumber":6055,"textBefore":"the livers of ","textAfter":" Dawley rats","comments":null,"startOffset":610,"endOffset":617,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2815622858b98b33e126c73b5ec33e1f","type":"PII","value":"39-46","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":183.82173,"y":503.63},"width":26.62828,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"Patho. Toxicol. 4:","textAfter":". Herren S,","comments":null,"startOffset":1103,"endOffset":1108,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787306Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5ed95d564f705a4b8e37af03ffa1fe02","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":528.71},"width":74.9128,"height":10.929359,"page":604}],"sectionNumber":6055,"textBefore":null,"textAfter":null,"comments":null,"startOffset":964,"endOffset":974,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618849Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b03be2b1b2c007982dfee39d91f46c15","type":"CBI_author","value":"Khoury M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.94016,"y":478.31},"width":48.26042,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"M, Britt A, ","textAfter":" (1982). Initiation/promotion","comments":null,"startOffset":1140,"endOffset":1148,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f03afb8d705ea86a2593231aa6d11075","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":293.2095,"y":165.18},"width":82.55249,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1762,"endOffset":1779,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8582beb278a29e19a91755238c9c1a19","type":"PII","value":"12143-150","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":174.40463,"y":465.71},"width":48.645386,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"liver. Toxicol Letters ","textAfter":". Rutenburg A,","comments":null,"startOffset":1239,"endOffset":1248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787306Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"99dbd61494db02e6d3973b2a704f1b24","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.5253,"y":566.87},"width":37.089783,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"the livers of ","textAfter":" Dawley rats.","comments":null,"startOffset":864,"endOffset":871,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15d6d5ee183613dbcd85d3c8280fac40","type":"CBI_author","value":"Seligman A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":350.3161,"y":440.39},"width":55.504486,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1306,"endOffset":1316,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"45fb96e4437c79754594f840d1bcd576","type":"CBI_author","value":"Wasserkrug H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":277.30853,"y":440.39},"width":66.27954,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1292,"endOffset":1304,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62d6ad9128b824b117cb588c16cc9e79","type":"CBI_author","value":"Pereira M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":102.34656,"y":516.35},"width":47.1472,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"REFERENCES: Ford J, ","textAfter":" (1980). Short-term","comments":null,"startOffset":984,"endOffset":993,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"22ca70d7906b9a33b7f46c46613e43df","type":"CBI_author","value":"Stoner G.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.1222,"y":350.01},"width":39.20656,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"Report: K-CA 5.8.1/49 ","textAfter":" et al.,","comments":null,"startOffset":22,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61885Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"061a11a82a156d8fafe838a514b65fdd","type":"PII","value":"19-31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":418.3989,"y":303.93},"width":24.320923,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"Appl. Pharmacol. 82:","textAfter":". Syngenta File","comments":null,"startOffset":434,"endOffset":439,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787306Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e87fe8ef839ff781601d62baa1b698ce","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":449.6679,"y":303.93},"width":37.94171,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"Appl. Pharmacol. 82:19-31. ","textAfter":" File No.","comments":null,"startOffset":441,"endOffset":449,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac244a49cb82663dcbeab46d61fb431d","type":"CBI_author","value":"Rutenburg A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":440.39},"width":60.306877,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1250,"endOffset":1261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4af989dd1e0396e9141a6341be047fbd","type":"CBI_author","value":"Stoner G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":304.56436,"y":326.97003},"width":36.955658,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"Ohio 43614. Published: ","textAfter":", Conran P,","comments":null,"startOffset":230,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aa8d823272f7026d49a0863defb66fc9","type":"CBI_author","value":"Conran P","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":345.9084,"y":326.97003},"width":38.77832,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"Published: Stoner G, ","textAfter":", Greisiger E,","comments":null,"startOffset":240,"endOffset":248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf5adb26ee29b9a093adbdf21417ec34","type":"CBI_author","value":"Hanker S","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.21536,"y":440.39},"width":44.442444,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1282,"endOffset":1290,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"42cdb48432ffd6105e4419ce760bc11a","type":"CBI_author","value":"Pereira M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":110.858406,"y":478.31},"width":45.59057,"height":11.017679,"page":604}],"sectionNumber":6055,"textBefore":"4:39-46. Herren S, ","textAfter":", Britt A,","comments":null,"startOffset":1120,"endOffset":1129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ff39e1349d7d2287edcc6ced4fe93ad","type":"CBI_author","value":"Periera M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":152.40536,"y":315.45},"width":42.33403,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"Morgan M and ","textAfter":" (1986). Comparison","comments":null,"startOffset":286,"endOffset":295,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1fda4887087e15d41c293b5c47ae4771","type":"CBI_author","value":"Stober J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":440.32928,"y":326.97003},"width":33.748535,"height":10.526819,"page":604}],"sectionNumber":6053,"textBefore":"P, Greisiger E, ","textAfter":", Morgan M","comments":null,"startOffset":263,"endOffset":271,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618851Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0349c051a83ceb8adf42a4f664a4fd7f","type":"CBI_address","value":"Sigma Chemical Company","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: Under the experimental conditions reported, 2,4,6-TCP did not cause an increase in the number of\nA/J mice with lung tumours, when dosed by either gavage or intraperitoneal.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":210.77,"y":524.15},"width":97.9301,"height":10.0905,"page":605}],"sectionNumber":6057,"textBefore":null,"textAfter":", St Louis,","comments":null,"startOffset":114,"endOffset":136,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47869271e8dcde139ab0f813884d0d1b","type":"CBI_author","value":"Chow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the experimental conditions reported, 2,4,6-TCP did not cause an increase in the number of\nA/J mice with lung tumours, when dosed by either gavage or intraperitoneal.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":299.83698,"y":270.33002},"width":22.491974,"height":10.0905,"page":605}],"sectionNumber":6058,"textBefore":"Purina Certified Rodent ","textAfter":" No. 5002","comments":null,"startOffset":292,"endOffset":296,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d9793d335a1a86946219ed6d063bb631","type":"CBI_address","value":"Eastman Kodak","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Under the experimental conditions reported, 2,4,6-TCP did not cause an increase in the number of\nA/J mice with lung tumours, when dosed by either gavage or intraperitoneal.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":301.47507,"y":432.83},"width":72.82623,"height":11.017679,"page":605}],"sectionNumber":6059,"textBefore":"(glycerol trioctanoate from ","textAfter":", Rochester, N.Y.).","comments":null,"startOffset":388,"endOffset":401,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cdd00c963d476b55095b1625f9f50695","type":"CBI_author","value":"Jackson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the experimental conditions reported, 2,4,6-TCP did not cause an increase in the number of\nA/J mice with lung tumours, when dosed by either gavage or intraperitoneal.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":457.3551,"y":319.16998},"width":29.485016,"height":10.0905,"page":605}],"sectionNumber":6058,"textBefore":"purchased from the ","textAfter":" Laboratories (Bar","comments":null,"startOffset":164,"endOffset":171,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b28c5a3010289fc735712c416f6553a","type":"PII","value":"1200 16 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-57: Study design, dose levels of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":286.01,"y":585.95},"width":19.044983,"height":10.0905,"page":606},{"topLeft":{"x":387.43,"y":585.95},"width":10.059998,"height":10.0905,"page":606},{"topLeft":{"x":481.42,"y":585.95},"width":10.059998,"height":10.0905,"page":606}],"sectionNumber":6067,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787307Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"85615ea0731fa9ea45d2a412e2906f97","type":"PII","value":"1200 16 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-57: Study design, dose levels of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":286.01,"y":607.7},"width":19.044983,"height":10.0905,"page":606},{"topLeft":{"x":387.43,"y":607.7},"width":10.059998,"height":10.0905,"page":606},{"topLeft":{"x":481.42,"y":607.7},"width":10.059998,"height":10.0905,"page":606}],"sectionNumber":6065,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787307Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d6a6f1ce5e0aec2a259112c67c7abbfb","type":"CBI_author","value":"Hollander","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Bioassays.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":269.60263,"y":255.93},"width":44.85086,"height":11.017679,"page":606}],"sectionNumber":6069,"textBefore":"trend test (","textAfter":" et al.,","comments":null,"startOffset":2063,"endOffset":2072,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f6fe927deda09b35a374870114bf2f5","type":"PII","value":"300 16 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-57: Study design, dose levels of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":288.29,"y":629.42},"width":14.619995,"height":10.0905,"page":606},{"topLeft":{"x":387.43,"y":629.42},"width":10.059998,"height":10.0905,"page":606},{"topLeft":{"x":481.42,"y":629.42},"width":10.059998,"height":10.0905,"page":606}],"sectionNumber":6063,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787308Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"228c1bcd2dcf10bb4cc29a2f03d6867f","type":"CBI_author","value":"Hollander","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Bioassays.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":487.40402,"y":243.18},"width":44.97232,"height":11.017679,"page":606}],"sectionNumber":6069,"textBefore":"rank test (","textAfter":" et al.,","comments":null,"startOffset":2212,"endOffset":2221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f2815958b39fabc2e8d50cab445f8bd","type":"PII","value":"600 16 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-57: Study design, dose levels of 2,4,6-TCP","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":288.29,"y":618.5},"width":14.619995,"height":10.0905,"page":606},{"topLeft":{"x":387.43,"y":618.5},"width":10.059998,"height":10.0905,"page":606},{"topLeft":{"x":481.42,"y":618.5},"width":10.059998,"height":10.0905,"page":606}],"sectionNumber":6064,"textBefore":null,"textAfter":null,"comments":null,"startOffset":7,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787308Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b03a6cb306d867a14dce77ef7f661b87","type":"PII","value":"24 1200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.38,"y":490.31},"width":10.059998,"height":10.0905,"page":607},{"topLeft":{"x":180.02,"y":490.31},"width":19.044998,"height":10.0905,"page":607}],"sectionNumber":6079,"textBefore":null,"textAfter":null,"comments":null,"startOffset":51,"endOffset":58,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787308Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f8c1565dfe09dcfe1a879bb97807823b","type":"published_information","value":"Toxicological Sciences","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: administration","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":183.74,"y":196.73999},"width":93.86702,"height":10.526819,"page":607}],"sectionNumber":6086,"textBefore":null,"textAfter":null,"comments":null,"startOffset":183,"endOffset":205,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ee76cfeb7779c01162ad6e291b0e6f5","type":"CBI_author","value":"Wang","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: administration","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":280.05847,"y":219.77997},"width":24.814423,"height":10.526819,"page":607}],"sectionNumber":6086,"textBefore":"Butt C M, ","textAfter":" D, Stapleton","comments":null,"startOffset":35,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["f8c1565dfe09dcfe1a879bb97807823b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"854268f9b3e56397cbc95de32863b226","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"administration","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":361.05},"width":74.9128,"height":10.929359,"page":607}],"sectionNumber":6091,"textBefore":null,"textAfter":null,"comments":null,"startOffset":214,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30c01c1876b06ef0cbc3c95d895221ee","type":"CBI_author","value":"Stoner G","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":439.01944,"y":296.97003},"width":40.523224,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"New York. (","textAfter":" et al,","comments":null,"startOffset":420,"endOffset":428,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5a5ef677c0183c61c851694ecde4241d","type":"CBI_address","value":"New York","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"administration","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":441.15305,"y":348.69},"width":47.21344,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"Wiley and Sons, ","textAfter":". Hollander H","comments":null,"startOffset":311,"endOffset":319,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618853Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d076c587ca77d976b9d1907c28e403e3","type":"PII","value":"24 1200","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.38,"y":522.35},"width":10.059998,"height":10.0905,"page":607},{"topLeft":{"x":180.02,"y":522.35},"width":19.044998,"height":10.0905,"page":607}],"sectionNumber":6078,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":20,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787309Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e891f5e038ebd4306318eb10a272273f","type":"CBI_author","value":"John","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.323,"y":348.69},"width":21.987,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"Rates and Proportions. ","textAfter":" Wiley and","comments":null,"startOffset":290,"endOffset":294,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b32e4f84162ee21f283cac369a41825c","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: administration","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":337.93964,"y":196.73999},"width":37.94171,"height":10.526819,"page":607}],"sectionNumber":6086,"textBefore":"Toxicological Sciences 124:339-347. ","textAfter":" File No.","comments":null,"startOffset":219,"endOffset":227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["f8c1565dfe09dcfe1a879bb97807823b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb23211c93a210815c5668e0d05a58a8","type":"CBI_author","value":"Hollander","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":323.37},"width":45.082718,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"Sons, New York. ","textAfter":" H and","comments":null,"startOffset":321,"endOffset":330,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f8fbb5e9eff2df5cdac5a474d8f234b6","type":"CBI_address","value":"New York","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"administration","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":473.43405,"y":323.37},"width":47.18039,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"Wiley and Sons, ","textAfter":". (Stoner G","comments":null,"startOffset":409,"endOffset":417,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc9bd4a173319d3bbc1cdec63491f4fa","type":"CBI_author","value":"John","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.69235,"y":323.37},"width":21.86557,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"Nonparametric Statistical Methods. ","textAfter":" Wiley and","comments":null,"startOffset":388,"endOffset":392,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b8503aa5d2444159a54b8aca393b07ac","type":"CBI_author","value":"Stapleton","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: administration","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":324.5399,"y":219.77997},"width":38.828125,"height":10.526819,"page":607}],"sectionNumber":6086,"textBefore":"M, Wang D, ","textAfter":" H M","comments":null,"startOffset":43,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618854Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["f8c1565dfe09dcfe1a879bb97807823b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"44750993b15abd4e28049f5d5d18621d","type":"CBI_author","value":"Butt","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: administration","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":228.2665,"y":219.77997},"width":18.171036,"height":10.526819,"page":607}],"sectionNumber":6086,"textBefore":"Reference: K-CA 5.8.1/50 ","textAfter":" C M,","comments":null,"startOffset":25,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618855Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["f8c1565dfe09dcfe1a879bb97807823b"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9476ad14d3a48eef90987894be328eae","type":"CBI_author","value":"Wolfe","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":140.1696,"y":323.37},"width":28.56688,"height":11.017679,"page":607}],"sectionNumber":6091,"textBefore":"Hollander H and ","textAfter":" D (1973).","comments":null,"startOffset":337,"endOffset":342,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618855Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f4f0e12d2c44be7089c3cbf501f0bdad","type":"PII","value":"339-347","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: administration","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":297.05496,"y":196.73999},"width":34.414673,"height":10.526819,"page":607}],"sectionNumber":6086,"textBefore":"Toxicological Sciences 124:","textAfter":". Syngenta File","comments":null,"startOffset":210,"endOffset":217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618855Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787309Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cf3437c670b5492a9073e7672dbbd2e6","type":"image","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.7411765,0.8392157,1.0],"positions":[{"topLeft":{"x":414.0,"y":609.0},"width":6.0,"height":11.0,"page":607}],"sectionNumber":6070,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":true,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9e25d7637f1171f9966dc3069e835a0e","type":"CBI_author","value":"Cascorbi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":221.30602,"y":664.34},"width":36.49745,"height":10.526819,"page":608}],"sectionNumber":6092,"textBefore":"Reference K-CA 5.8.1/51 ","textAfter":" I, Ahlers","comments":null,"startOffset":24,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c8af0a5116adce6c5f920e6dffd5966","type":"published_information","value":"ATLA","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":295.13,"y":377.49},"width":27.61319,"height":10.526819,"page":608}],"sectionNumber":6098,"textBefore":null,"textAfter":null,"comments":null,"startOffset":139,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5a585a91a3be75b25aa877000cc3fc22","type":"PII","value":"197-210","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":208.76393,"y":641.42},"width":34.485672,"height":10.526819,"page":608}],"sectionNumber":6092,"textBefore":"cells. Toxicology 58:","textAfter":". Syngenta File","comments":null,"startOffset":207,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787309Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f42f72c968c49bf571153092c5c8bdb9","type":"CBI_author","value":"Appel KE","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":261.01733,"y":87.304016},"width":42.812164,"height":10.526819,"page":608}],"sectionNumber":6104,"textBefore":null,"textAfter":null,"comments":null,"startOffset":38,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"31fc3a5f69ea7266d80cd2c87c536f9b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":249.82916,"y":641.42},"width":37.94171,"height":10.526819,"page":608}],"sectionNumber":6092,"textBefore":"cells. Toxicology 58:197-210. ","textAfter":" File No.","comments":null,"startOffset":216,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9ae36817607cc03a6fd334e6b5b92be","type":"PII","value":"(10-100","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":324.19403,"y":296.49},"width":29.606964,"height":10.0905,"page":608}],"sectionNumber":6101,"textBefore":"and high dose ","textAfter":" mg/L) of","comments":null,"startOffset":78,"endOffset":85,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618856Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78731Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1ebba9ae4c18a4ba8b50e45942fafab2","type":"CBI_author","value":"Johnels D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":283.3395,"y":389.01},"width":43.539246,"height":10.526819,"page":608}],"sectionNumber":6098,"textBefore":null,"textAfter":null,"comments":null,"startOffset":46,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"}],"manualChanges":[],"engines":["NER"],"reference":["8c8af0a5116adce6c5f920e6dffd5966"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f6b57b47aa3b3e16f528e6a12cf8838d","type":"CBI_author","value":"Ekwall","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.34685,"y":389.01},"width":29.057297,"height":10.526819,"page":608}],"sectionNumber":6098,"textBefore":"Reference: K-CA 5.8.1/52 ","textAfter":" B, Selling","comments":null,"startOffset":25,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8c8af0a5116adce6c5f920e6dffd5966"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ebb8fde4ee3b1ca1ac776a19aeb406c7","type":"CBI_author","value":"Glatt","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":375.86624,"y":87.304016},"width":20.920044,"height":10.526819,"page":608}],"sectionNumber":6104,"textBefore":"KE, Heyworth CM, ","textAfter":" H (2001).","comments":null,"startOffset":61,"endOffset":66,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ff427d704dde62a17c763d74b27a0ee2","type":"PII","value":"31-37","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.27283,"y":64.23999},"width":24.487,"height":10.526819,"page":608}],"sectionNumber":6104,"textBefore":"In Vitro 15:","textAfter":" Syngenta File","comments":null,"startOffset":255,"endOffset":260,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78731Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"12d3bbbc24025c427cb53c30ce7a10de","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.22,"y":366.09},"width":38.051224,"height":10.526819,"page":608}],"sectionNumber":6098,"textBefore":"Laboratory Animals 14:178-81. ","textAfter":" File No.","comments":null,"startOffset":191,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8c8af0a5116adce6c5f920e6dffd5966"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b42fa033d98ceca1a80968d1e38175e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":446.78156,"y":64.23999},"width":38.160828,"height":10.526819,"page":608}],"sectionNumber":6104,"textBefore":"In Vitro 15:31-37 ","textAfter":" File No.","comments":null,"startOffset":261,"endOffset":269,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3e3ef20f1c75c4be5d1535530d8780af","type":"CBI_author","value":"Heyworth CM","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":309.56244,"y":87.304016},"width":60.451324,"height":10.526819,"page":608}],"sectionNumber":6104,"textBefore":null,"textAfter":null,"comments":null,"startOffset":48,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618857Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e001005f0d5254c033fa06718d158d10","type":"CBI_author","value":"Henschler","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":203.09,"y":87.304016},"width":41.27823,"height":10.526819,"page":608}],"sectionNumber":6104,"textBefore":"Reference: K-CA 5.8.1/53 ","textAfter":" R, Appel","comments":null,"startOffset":25,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b6adb30b4b851ce2585719bcbbaa493","type":"PII","value":"178-81","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":495.44583,"y":377.49},"width":29.623932,"height":10.526819,"page":608}],"sectionNumber":6098,"textBefore":"Laboratory Animals 14:","textAfter":". Syngenta File","comments":null,"startOffset":183,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78731Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"404354fea7dada2191a44082ff94ab63","type":"CBI_author","value":"Selling J","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":242.60312,"y":389.01},"width":36.158813,"height":10.526819,"page":608}],"sectionNumber":6098,"textBefore":null,"textAfter":null,"comments":null,"startOffset":35,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"}],"manualChanges":[],"engines":["NER"],"reference":["8c8af0a5116adce6c5f920e6dffd5966"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4c3a74f1335dcc70f5232f43372c757d","type":"CBI_author","value":"Ahlers","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.78525,"y":664.34},"width":27.543457,"height":10.526819,"page":608}],"sectionNumber":6092,"textBefore":"5.8.1/51 Cascorbi I, ","textAfter":" J (1989).","comments":null,"startOffset":36,"endOffset":42,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"49d755c699429540a618e2ae716d3f44","type":"CBI_author","value":"Liao","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":240.25844,"y":69.880005},"width":19.286545,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":"5.8.1/55 Jia R-W, ","textAfter":" T-T, Shi","comments":null,"startOffset":34,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"56c4252a4a552e5883a824466d6acff7","type":"CBI_author","value":"Jia","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.57,"y":69.880005},"width":12.145233,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":"Reference: K-CA 5.8.1/55 ","textAfter":" R-W, Liao","comments":null,"startOffset":25,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d9ac9106f39f828ea2b8ab388201e6f0","type":"PII","value":"289-94","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.68848,"y":383.01},"width":29.411346,"height":10.526819,"page":609}],"sectionNumber":6110,"textBefore":"Hamster Cells. Toxicol.Lett.69:","textAfter":". Syngenta File","comments":null,"startOffset":130,"endOffset":136,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618858Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787311Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5598c0bcd8c1811bad9409d8ae5cc5cf","type":"CBI_author","value":"Xia","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":361.53555,"y":69.880005},"width":15.382263,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":"Y-L, Wang L, ","textAfter":" J, Lu","comments":null,"startOffset":61,"endOffset":64,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618859Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bc8fcd0102808672abd254f3c19cd79","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.42255,"y":394.53},"width":32.015427,"height":10.526819,"page":609}],"sectionNumber":6110,"textBefore":"Reference: K-CA 5.8.1/54 ","textAfter":" K, Jansson","comments":null,"startOffset":25,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618859Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad7ed992dbc70d5c2143d40971290282","type":"CBI_author","value":"Lu B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.20447,"y":69.880005},"width":21.906067,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":null,"textAfter":null,"comments":null,"startOffset":68,"endOffset":72,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618859Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"86660ef830fd1def7fcb03c6e82b895d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":296.16946,"y":383.01},"width":37.931763,"height":10.526819,"page":609}],"sectionNumber":6110,"textBefore":"Hamster Cells. Toxicol.Lett.69:289-94. ","textAfter":" File No.","comments":null,"startOffset":138,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618859Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30ab6af1bf2e6450fd393029dac2ed87","type":"CBI_author","value":"Jansson","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.78236,"y":394.53},"width":32.244583,"height":10.526819,"page":609}],"sectionNumber":6110,"textBefore":"5.8.1/54 Jansson K, ","textAfter":" V (1993).","comments":null,"startOffset":36,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618859Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d1427e7625cafac6e160b84c66774da","type":"CBI_author","value":"Shi","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":283.46146,"y":69.880005},"width":14.20697,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":"R-W, Liao T-T, ","textAfter":" Y-L, Wang","comments":null,"startOffset":44,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c8027b37f27f90aad2df6964ef044ec","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.447,"y":58.359985},"width":20.969818,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":"component analysis in ","textAfter":" cells exposed","comments":null,"startOffset":157,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a11b5125f12aa5e20ddd5435896f1068","type":"CBI_author","value":"Wang L","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":322.4624,"y":69.880005},"width":34.306305,"height":10.526819,"page":609}],"sectionNumber":6116,"textBefore":"T-T, Shi Y-L, ","textAfter":", Xia J,","comments":null,"startOffset":53,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61886Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c01f3f6654965fcc6c780861ab024c39","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":124.54799,"y":401.37},"width":23.057938,"height":11.017679,"page":610}],"sectionNumber":6129,"textBefore":"cell membrane in ","textAfter":" cells and","comments":null,"startOffset":342,"endOffset":346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21964b8709ddaeac1a333777e8d469da","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.692,"y":579.71},"width":19.044983,"height":10.0905,"page":610}],"sectionNumber":6121,"textBefore":"mg/L TCP). The ","textAfter":" cell plasma","comments":null,"startOffset":509,"endOffset":513,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d79a4738715fec5b8ada70d33212c02a","type":"CBI_author","value":"Judis","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.37,"y":349.53},"width":21.54747,"height":10.526819,"page":610}],"sectionNumber":6124,"textBefore":"Reference: K-CA 5.8.1/56 ","textAfter":" J (1982).","comments":null,"startOffset":25,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618861Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8c4e391879174b8a979f25b038b317e2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7b4383ccf3a4126010be0821d0e5abc3","type":"PII","value":"1145-47","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":290.15982,"y":338.01},"width":34.600006,"height":10.526819,"page":610}],"sectionNumber":6124,"textBefore":"Pharmaceutical Sciences 71:","textAfter":". Syngenta File","comments":null,"startOffset":143,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618861Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787311Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"246d2f1162b8fe9ea535b5192b33c760","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":331.3394,"y":338.01},"width":37.931763,"height":10.526819,"page":610}],"sectionNumber":6124,"textBefore":"Pharmaceutical Sciences 71:1145-47. ","textAfter":" File No.","comments":null,"startOffset":152,"endOffset":160,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618861Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8c4e391879174b8a979f25b038b317e2"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b993cce8278fb712e0bdc0c5904ecf24","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":348.01965,"y":753.98},"width":38.05127,"height":10.526819,"page":610}],"sectionNumber":6118,"textBefore":"Environ. Health, 270(4):302-305. ","textAfter":" File No.","comments":null,"startOffset":53,"endOffset":61,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618861Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"35be9ec14fa98da641a0eb14b7b87022","type":"PII","value":"302-305","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":307.06946,"y":753.98},"width":34.480194,"height":10.526819,"page":610}],"sectionNumber":6118,"textBefore":"Environ. Health, 270(4):","textAfter":". Syngenta File","comments":null,"startOffset":44,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618861Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787312Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"89a5b2d91c32929849b92283f9a5c23f","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":509.51224,"y":426.71},"width":23.06894,"height":11.017679,"page":610}],"sectionNumber":6129,"textBefore":"phospholipid ratio in ","textAfter":" cell plasma","comments":null,"startOffset":220,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618861Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c4e391879174b8a979f25b038b317e2","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":133.22,"y":338.01},"width":41.22844,"height":10.526819,"page":610}],"sectionNumber":6124,"textBefore":null,"textAfter":null,"comments":null,"startOffset":105,"endOffset":115,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618862Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"68e4a6b3a176d5c6dc9091757656126f","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.25,"y":658.22},"width":19.044998,"height":10.0905,"page":610}],"sectionNumber":6121,"textBefore":null,"textAfter":" cells were","comments":null,"startOffset":59,"endOffset":63,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618862Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f0dae88bc7c970abc8aad121ec8e36fc","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":220.54915,"y":229.97998},"width":38.031265,"height":10.526819,"page":611}],"sectionNumber":6139,"textBefore":"Eisei Kagaku 36:267-276. ","textAfter":" File No.","comments":null,"startOffset":220,"endOffset":228,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618862Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6e27efbd88a2b29951572414175dbcc","type":"CBI_author","value":"Hecker M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":403.91336,"y":689.06},"width":44.465454,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"R.S.S., Giesy J.P, ","textAfter":", Zhang X,","comments":null,"startOffset":71,"endOffset":80,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618862Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"afec8feaa5b6f6bdf0f143fca5959dba","type":"CBI_author","value":"Ma Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.57,"y":689.06},"width":24.844254,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618862Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8578ef6ab89fec6032ef725043111b7","type":"CBI_author","value":"Hamada A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":371.76303,"y":253.04999},"width":44.525238,"height":10.526819,"page":611}],"sectionNumber":6139,"textBefore":"M, Utsumi H, ","textAfter":" (1990). Comparative","comments":null,"startOffset":65,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618862Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb281ddd098eae024ed4324785c78707","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":346.69937,"y":666.02},"width":37.94171,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"TCP. Toxicology, 282:146-53. ","textAfter":" File No.","comments":null,"startOffset":235,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618863Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"81321ee4031ec1833f128872967223f0","type":"CBI_author","value":"Murayama J-I","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.61,"y":253.04999},"width":57.71666,"height":10.526819,"page":611}],"sectionNumber":6139,"textBefore":"Reference: K-CA 5.8.1/58 ","textAfter":", Ishiwata, F.","comments":null,"startOffset":25,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618863Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de1e1967bea1aa6028fe3cd792c2225e","type":"CBI_author","value":"Zhang X","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.2851,"y":689.06},"width":36.84613,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"J.P, Hecker M., ","textAfter":", Zhou B","comments":null,"startOffset":82,"endOffset":89,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618863Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"101da807c553881b21e2b02203053230","type":"CBI_author","value":"Ishiwata, F. M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":261.85443,"y":253.04999},"width":60.082733,"height":10.526819,"page":611}],"sectionNumber":6139,"textBefore":null,"textAfter":null,"comments":null,"startOffset":39,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618863Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0428491df1afa6df26bfb8b4d4db3df7","type":"CBI_author","value":"Zhou","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":494.99765,"y":689.06},"width":22.035553,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"M., Zhang X, ","textAfter":" B (2011).","comments":null,"startOffset":91,"endOffset":95,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618863Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"81f14cbd392b2875701787b5e8579fa6","type":"CBI_author","value":"Lam","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":259.8719,"y":689.06},"width":19.29654,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"Y, Liu C, ","textAfter":" P.K.S, Wu","comments":null,"startOffset":38,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618863Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d901f6a6731d2f3f1d9e4a6834826747","type":"CBI_author","value":"Utsumi H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":326.46494,"y":253.04999},"width":40.670715,"height":10.526819,"page":611}],"sectionNumber":6139,"textBefore":"Ishiwata, F. M, ","textAfter":", Hamada A","comments":null,"startOffset":55,"endOffset":63,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618864Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8dee31865353777ed9a5f7170ecf5a9c","type":"CBI_author","value":"Liu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":230.28072,"y":689.06},"width":14.7447815,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"5.8.1/57 Ma Y, ","textAfter":" C, Lam","comments":null,"startOffset":31,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618864Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c8418c6b88a8296f6d1bd23474acdc5a","type":"PII","value":"146-53","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":310.65378,"y":666.02},"width":29.466034,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"TCP. Toxicology, 282:","textAfter":". Syngenta File","comments":null,"startOffset":227,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618864Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787312Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5dbeb2e35d31fab9b6c5ec0cff8ef55a","type":"CBI_author","value":"Wu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":310.56824,"y":689.06},"width":15.451996,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"C, Lam P.K.S, ","textAfter":" R.S.S., Giesy","comments":null,"startOffset":49,"endOffset":51,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618864Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bfaf8c581907db527796d68a132ab0cf","type":"CBI_author","value":"Giesy J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":359.3523,"y":689.06},"width":31.48761,"height":10.526819,"page":611}],"sectionNumber":6130,"textBefore":"P.K.S, Wu R.S.S., ","textAfter":".P, Hecker M.,","comments":null,"startOffset":60,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618864Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43e342966c9c58b42700c5a89028532b","type":"PII","value":"267-276","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":179.51408,"y":229.97998},"width":34.455505,"height":10.526819,"page":611}],"sectionNumber":6139,"textBefore":"Eisei Kagaku 36:","textAfter":". Syngenta File","comments":null,"startOffset":211,"endOffset":218,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618865Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787313Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a01403fd8303077a2e1184590e7c2b3a","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":364.09964,"y":170.10004},"width":37.94171,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"Science 47: 258-271. ","textAfter":" File No.","comments":null,"startOffset":227,"endOffset":235,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618865Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["e0f3d09a92ed89cc3738f69b84e27e01"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d70e40b4f476f06f1dadc0d4bcd2a724","type":"CBI_author","value":"Ueno H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":273.4868,"y":193.14001},"width":37.2146,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"5.8.1/60 Sakazaki H, ","textAfter":", Umetani K,","comments":null,"startOffset":37,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618865Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["e0f3d09a92ed89cc3738f69b84e27e01"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"614a303ad4774feb1dfa245966bcbeee","type":"CBI_author","value":"Sakazaki H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":212.93,"y":193.14001},"width":51.60678,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"Reference: K-CA 5.8.1/60 ","textAfter":", Ueno H,","comments":null,"startOffset":25,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618865Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["e0f3d09a92ed89cc3738f69b84e27e01"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3524734abaad7c9a4c4d2fabffc1c070","type":"CBI_author","value":"Gao","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":326.01114,"y":521.03},"width":17.593384,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"Z, Li J, ","textAfter":" G, Yang","comments":null,"startOffset":54,"endOffset":57,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618865Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9e67035cb277f3044ec7a96398d6a82","type":"CBI_author","value":"Yang Y","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":359.80542,"y":521.03},"width":33.489563,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"J, Gao G, ","textAfter":", Yuan X,","comments":null,"startOffset":61,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618865Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bc541ce3c7fa6332bea0b917434070b0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":238.31935,"y":498.11},"width":37.941696,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"Analytical Biochemistry 462:60-66. ","textAfter":" File No.","comments":null,"startOffset":218,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b98a444ad591e21bf07ce99e890f6d68","type":"PII","value":"60-66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":207.31242,"y":498.11},"width":24.427368,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"Analytical Biochemistry 462:","textAfter":". Syngenta File","comments":null,"startOffset":211,"endOffset":216,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618866Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787313Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6890599d13064f8701b9d3f3195c12b5","type":"CBI_author","value":"Wu","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":437.34406,"y":521.03},"width":15.571503,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"Y, Yuan X, ","textAfter":" D (2014).","comments":null,"startOffset":77,"endOffset":79,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aba16aa894ad3dab2a2f65df36f45dfd","type":"CBI_author","value":"Nakamuro K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":432.71735,"y":193.14001},"width":57.82184,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"K, Utsumi H, ","textAfter":" (2001). Immunotoxicological","comments":null,"startOffset":66,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618866Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["e0f3d09a92ed89cc3738f69b84e27e01"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"deb3bc95578604467adad8d9088fd736","type":"CBI_author","value":"Umetani K","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":319.6514,"y":193.14001},"width":50.04306,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"H, Ueno H, ","textAfter":", Utsumi H,","comments":null,"startOffset":45,"endOffset":54,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618866Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["e0f3d09a92ed89cc3738f69b84e27e01"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"96d5cbadc027a04d94d93f4b9eb8b0f1","type":"CBI_author","value":"Zhang","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":261.67938,"y":521.03},"width":26.477753,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"H, Liu J, ","textAfter":" Z, Li","comments":null,"startOffset":39,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618866Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"affc930666a7cd3ae86f3007e7b6f250","type":"CBI_author","value":"Liu J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.90097,"y":521.03},"width":22.364166,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"5.8.1/59 Qin H, ","textAfter":", Zhang Z,","comments":null,"startOffset":32,"endOffset":37,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"00e32e58a258bded549728c330bc6123","type":"CBI_author","value":"Yuan","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":398.51996,"y":521.03},"width":22.762634,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"G, Yang Y, ","textAfter":" X, Wu","comments":null,"startOffset":69,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6fa867a3943a7b38249ffa7c7bea89c5","type":"PII","value":"258-271","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":323.05536,"y":170.10004},"width":34.57428,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"Health Science 47: ","textAfter":". Syngenta File","comments":null,"startOffset":218,"endOffset":225,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787313Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"447899fcb575f61d098dbf6bd7c48974","type":"CBI_author","value":"Utsumi H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":378.764,"y":193.14001},"width":45.003326,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":"H, Umetani K, ","textAfter":", Nakamuro K","comments":null,"startOffset":56,"endOffset":64,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["e0f3d09a92ed89cc3738f69b84e27e01"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2976252d5c52ec08abd84c00186326ef","type":"CBI_author","value":"Qin","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":201.77,"y":521.03},"width":15.939987,"height":10.526819,"page":612}],"sectionNumber":6146,"textBefore":"Reference: K-CA 5.8.1/59 ","textAfter":" H, Liu","comments":null,"startOffset":25,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e0f3d09a92ed89cc3738f69b84e27e01","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":202.37,"y":170.10004},"width":41.22844,"height":10.526819,"page":612}],"sectionNumber":6153,"textBefore":null,"textAfter":null,"comments":null,"startOffset":188,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f92ea19820eaee62cc800b8edab97e8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":287.81,"y":217.62},"width":37.931763,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"and Technology 25:325-332. ","textAfter":" File No.","comments":null,"startOffset":225,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e2aeb045ac4e4683d8535a4d7038829","type":"published_information","value":"Environmental Toxicology and Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":393.43,"y":517.91},"width":133.76697,"height":10.526819,"page":613},{"topLeft":{"x":133.22,"y":506.39},"width":42.682602,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":null,"textAfter":null,"comments":null,"startOffset":156,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618867Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a8a65ffa55c067995eebe23d807b3e21","type":"PII","value":"57-66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":190.06172,"y":506.39},"width":24.398071,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":"and Chemistry 10:","textAfter":". Syngenta File","comments":null,"startOffset":198,"endOffset":203,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618868Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787314Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"461c8a5624780f4f43a91ed6e276cf8c","type":"CBI_author","value":"Bevan","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":388.14285,"y":529.31},"width":26.477722,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":"Dietrich A M, ","textAfter":" D R","comments":null,"startOffset":66,"endOffset":71,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618868Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8e2aeb045ac4e4683d8535a4d7038829"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"524462c1808f6be4c03fa5e17ae6c2fb","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":221.03935,"y":506.39},"width":38.140854,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":"and Chemistry 10:57-66. ","textAfter":" File No.","comments":null,"startOffset":205,"endOffset":213,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618868Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8e2aeb045ac4e4683d8535a4d7038829"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a2a5062e44b98d19878ca1f560df2244","type":"CBI_author","value":"Hakoda M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.76753,"y":240.65997},"width":44.2563,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":null,"textAfter":null,"comments":null,"startOffset":35,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618868Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"731c7b0bb71b92cbd91ae3f92b531edb","type":"CBI_author","value":"Boardman","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":260.01743,"y":529.31},"width":42.523285,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":"Shannon R D, ","textAfter":" G D.","comments":null,"startOffset":38,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618868Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8e2aeb045ac4e4683d8535a4d7038829"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6ae4e7050a19e0a52843ff715f8f6fd6","type":"CBI_author","value":"Dietrich","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":327.606,"y":529.31},"width":33.79831,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":"Boardman G D. ","textAfter":" A M,","comments":null,"startOffset":52,"endOffset":60,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618868Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8e2aeb045ac4e4683d8535a4d7038829"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"91cdc0e4159e13b78bc94d31f3412faa","type":"CBI_author","value":"Manabe","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":351.96112,"y":240.65997},"width":33.35013,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"M, Kiyoshige K, ","textAfter":" H, Mitade","comments":null,"startOffset":58,"endOffset":64,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43721df0748800343b99694d5a7cbab3","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":251.65398,"y":424.79},"width":30.529007,"height":10.0905,"page":613}],"sectionNumber":6162,"textBefore":"the liver of ","textAfter":"-Dawley rats and","comments":null,"startOffset":77,"endOffset":84,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0870a5b5f7631da66b88851d1e3f0c2b","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":500.91013,"y":240.65997},"width":17.593353,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"C, Murayama J, ","textAfter":" S K,","comments":null,"startOffset":90,"endOffset":93,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c99d2f39a359d30df0da2829af493011","type":"CBI_author","value":"Murayama","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":444.37997,"y":240.65997},"width":44.592133,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"H, Mitade C, ","textAfter":" J, Han","comments":null,"startOffset":78,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ae9b59073460231dfaaa8a3d66dcbc6","type":"CBI_author","value":"Utsumi H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.33,"y":240.65997},"width":40.690598,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"Reference: K-CA 5.8.1/62 ","textAfter":", Hakoda M,","comments":null,"startOffset":25,"endOffset":33,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e331af60f858db241cd5c111358a9b5","type":"CBI_author","value":"Hamada A","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":145.67996,"y":229.14001},"width":44.16664,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"Han S K, ","textAfter":" (1992). Cytotoxicity","comments":null,"startOffset":99,"endOffset":107,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c3032c16d184e52b5f2b1c62ab30302","type":"CBI_author","value":"Kiyoshige K","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.79065,"y":240.65997},"width":52.423584,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":null,"textAfter":null,"comments":null,"startOffset":45,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618869Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bb01cbdbbe32a3e632494613f857efb1","type":"CBI_author","value":"Shannon","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.61,"y":529.31},"width":35.95961,"height":10.526819,"page":613}],"sectionNumber":6159,"textBefore":"Reference: K-CA 5.8.1/61 ","textAfter":" R D,","comments":null,"startOffset":25,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61887Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["8e2aeb045ac4e4683d8535a4d7038829"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95e92c82f47a3174c7dba59a19da1133","type":"PII","value":"325-332","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":246.6345,"y":217.62},"width":34.53514,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":"and Technology 25:","textAfter":". Syngenta File","comments":null,"startOffset":216,"endOffset":223,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61887Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787315Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aa2d93d845c863e52004354887edb089","type":"CBI_author","value":"Mitade C","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.49622,"y":240.65997},"width":39.186646,"height":10.526819,"page":613}],"sectionNumber":6165,"textBefore":null,"textAfter":null,"comments":null,"startOffset":68,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61887Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ee676f84281e15ea59f57bf9aa86c0ec","type":"CBI_author","value":"Van Agen, E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":206.33636,"y":327.09003},"width":53.36969,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":263,"endOffset":274,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61887Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1348f0488812b50f321b68c7aecd3531","type":"CBI_author","value":"Herwijnen M.H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":334.7009,"y":327.09003},"width":64.30585,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":293,"endOffset":306,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61887Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eed55ba6e759f7241308e35b62b98cdb","type":"CBI_author","value":"C.M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":435.65555,"y":327.09003},"width":21.457825,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"M.H, Staal Y.","textAfter":", Kleinjans J.C.S.","comments":null,"startOffset":316,"endOffset":320,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618871Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a14b21f8385b46c8b92eabd47202445a","type":"CBI_author","value":"Van Agen, E","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":272.61533,"y":364.53},"width":53.489258,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":43,"endOffset":54,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618871Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cb8ad0d7eadb8689922e8fce631489fc","type":"CBI_author","value":"Herwijnen M.H","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":401.5675,"y":364.53},"width":64.4353,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":73,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618871Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c52615cfed5b5a7014f22255ad4cd584","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":218.29828,"y":341.49},"width":62.06482,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":216,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618871Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6a5582fb1ad70fc9db2ec58ef77efe82","type":"CBI_author","value":"C.M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":503.01013,"y":364.53},"width":21.457825,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"M.H, Staal Y.","textAfter":", Kleinjans J.C.S.","comments":null,"startOffset":96,"endOffset":100,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618871Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f6fe1d0b04976e9eabed20ff9465ce7b","type":"CBI_author","value":"van","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":330.5029,"y":364.53},"width":15.451996,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"Van Agen, E, ","textAfter":" Breda S.G.J,","comments":null,"startOffset":56,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618871Z"}],"manualChanges":[],"engines":["RULE"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"365a72c9c3ac78153f45f5e6966aee13","type":"CBI_author","value":"Kleinjans J.C.S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.22,"y":353.01},"width":66.83557,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":102,"endOffset":118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"10a72b6f27a7d274ad94a82e60cc490e","type":"PII","value":"1265-1276","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 3","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":294.67166,"y":341.49},"width":44.598236,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"profiling. Carcinogenesis 25:","textAfter":". van Delft","comments":null,"startOffset":234,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787315Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fc93eb1a064219c74fed0f82044cf33c","type":"CBI_author","value":"van","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":263.98486,"y":327.09003},"width":15.32251,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"Van Agen, E, ","textAfter":" Breda S.G.J,","comments":null,"startOffset":276,"endOffset":279,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["RULE"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9980c2fa490d7b74911aaef957677887","type":"CBI_author","value":"Kleinjans J.C.S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":461.42206,"y":327.09003},"width":65.620544,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":322,"endOffset":338,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"685114fe304c26d01f16714cb772983d","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":217.48204,"y":304.05},"width":62.064835,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":447,"endOffset":461,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f436702f9eddfae567a7daed1fc62e74","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":316.46466,"y":304.05},"width":37.931763,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"[Erratum]. Carcinogenesis 26:511. ","textAfter":" File No.","comments":null,"startOffset":470,"endOffset":478,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"77be9c80c758843ae5930561ce029dfb","type":"CBI_author","value":"van Delft J.H.M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.22,"y":327.09003},"width":68.80768,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":245,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e54183a0f536dbbe54eab22affff6b98","type":"CBI_author","value":"Breda","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":347.7636,"y":364.53},"width":24.953827,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"Agen, E, van ","textAfter":" S.G.J, Herwijnen","comments":null,"startOffset":60,"endOffset":65,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618872Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f7eb8f42d01a9862452edfb3f8108202","type":"CBI_author","value":"Breda","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":281.0165,"y":327.09003},"width":24.953827,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":"Agen, E, van ","textAfter":" S.G.J, Herwijnen","comments":null,"startOffset":280,"endOffset":285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4ddb5a657cc0746d2b66f2506950a04","type":"CBI_author","value":"van Delft J.H.M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 3","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.25,"y":364.53},"width":68.93713,"height":10.526819,"page":614}],"sectionNumber":6173,"textBefore":null,"textAfter":null,"comments":null,"startOffset":25,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["NER"],"reference":["c52615cfed5b5a7014f22255ad4cd584","685114fe304c26d01f16714cb772983d"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3316a8f786603fa261b9ef72f47ed97d","type":"CBI_author","value":"Shi","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":205.61,"y":468.71},"width":14.206955,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":"Reference: K-CA 5.8.1/65 ","textAfter":" Y-L, Wang","comments":null,"startOffset":25,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["d96c3abd2fc3b6075f50e2ea418872fa"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d96c3abd2fc3b6075f50e2ea418872fa","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":482.0101,"y":457.19},"width":45.4216,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":null,"textAfter":null,"comments":null,"startOffset":173,"endOffset":183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"743a5bf765463bc8745e4bcc23a86847","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":353.73},"width":19.044998,"height":10.0905,"page":615}],"sectionNumber":6189,"textBefore":"flow cytometry on ","textAfter":" CCL-81 cells","comments":null,"startOffset":66,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"224341f94e6c47955fe902e73fa784f4","type":"CBI_author","value":"Wang L","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":247.94514,"y":468.71},"width":35.989548,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":"5.8.1/65 Shi Y-L, ","textAfter":", Zhou Q,","comments":null,"startOffset":34,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["d96c3abd2fc3b6075f50e2ea418872fa"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"806e6ac22e796fad165f09ef2ac0d224","type":"CBI_author","value":"Vero","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":249.17433,"y":457.19},"width":20.969803,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":"sensitivity in mammalian ","textAfter":" cells exposed","comments":null,"startOffset":122,"endOffset":126,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["d96c3abd2fc3b6075f50e2ea418872fa"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"689640272dacba0a70d4683acea1c2fc","type":"PII","value":"479-487","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.44415,"y":445.67},"width":34.485443,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":"of Ecotoxicity 3:","textAfter":". Syngenta File","comments":null,"startOffset":198,"endOffset":205,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618873Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787316Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c8515132c5ac253324083fe47b0778a3","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 2","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.29834,"y":78.27997},"width":23.057922,"height":11.017679,"page":615}],"sectionNumber":6204,"textBefore":"of 2,4,6-TCP on ","textAfter":" cells in","comments":null,"startOffset":466,"endOffset":470,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d267bb3871e59f2afd4a551083c57f1a","type":"CBI_author","value":"van","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":204.17,"y":726.38},"width":15.322479,"height":10.526819,"page":615}],"sectionNumber":6180,"textBefore":"Reference: K-CA 5.8.1/64 ","textAfter":" den Berg","comments":null,"startOffset":25,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618874Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"72acdb263dc7e88abaf1182f2d88a998","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":230.50916,"y":445.67},"width":37.94168,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":"of Ecotoxicity 3:479-487. ","textAfter":" File No.","comments":null,"startOffset":207,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["d96c3abd2fc3b6075f50e2ea418872fa"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4d61e1fd464a1ead72f8074654d306a4","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":226.55936,"y":703.34},"width":38.04129,"height":10.526819,"page":615}],"sectionNumber":6180,"textBefore":"Chemico-Biological Interactions 76:63-75. ","textAfter":" File No.","comments":null,"startOffset":219,"endOffset":227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f0b8cf12e02782c4f3830d47f0e7153","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"KLIMISCH SCORE: 2","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":76.6896,"y":103.619995},"width":23.068954,"height":11.017679,"page":615}],"sectionNumber":6204,"textBefore":"cell membrane in ","textAfter":" cells in","comments":null,"startOffset":215,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"43d77b462e0e18e91dab81fa5688cd3b","type":"PII","value":"63-75","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":195.55962,"y":703.34},"width":24.420181,"height":10.526819,"page":615}],"sectionNumber":6180,"textBefore":"Chemico-Biological Interactions 76:","textAfter":". Syngenta File","comments":null,"startOffset":212,"endOffset":217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618878Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787316Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3c2640710067748cbd4fef0088c8cc54","type":"CBI_author","value":"Zhou","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 1","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":290.38477,"y":468.71},"width":22.035583,"height":10.526819,"page":615}],"sectionNumber":6186,"textBefore":"Y-L, Wang L, ","textAfter":" Q, (2008).","comments":null,"startOffset":42,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["d96c3abd2fc3b6075f50e2ea418872fa"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5676d6ebcd5872b44c83f0e38af8247a","type":"CBI_author","value":"Berg K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 1","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":241.94829,"y":726.38},"width":34.535324,"height":10.526819,"page":615}],"sectionNumber":6180,"textBefore":"5.8.1/64 van den ","textAfter":".J (1990). Interaction","comments":null,"startOffset":33,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b42b17bef1ae0b24ccfe79db258a3f23","type":"PII","value":"532-41","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: KLIMISCH SCORE: 2","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":350.2009,"y":727.94},"width":29.529358,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"of Toxicology, 33(6):","textAfter":". Syngenta File","comments":null,"startOffset":232,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787316Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aece4dd6f4bfa7853712b59473a2f624","type":"CBI_author","value":"Huang","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":369.0842,"y":750.98},"width":27.682892,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"Z, Qi Y, ","textAfter":" D, Zhang","comments":null,"startOffset":56,"endOffset":61,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["314ada7478a742dbe449e7325315dfd3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9aba70bc4831a67620020f47a440f7a5","type":"CBI_author","value":"Zhang","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":417.27072,"y":750.98},"width":26.477753,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"Y, Huang D, ","textAfter":" Y (2014).","comments":null,"startOffset":65,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["314ada7478a742dbe449e7325315dfd3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b34573fd2e125960b6b5c2f5b953ea56","type":"CBI_author","value":"Zhang X","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":208.25,"y":750.98},"width":39.47548,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"Reference: K-CA 5.8.1/66 ","textAfter":", Zhang X,","comments":null,"startOffset":25,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["314ada7478a742dbe449e7325315dfd3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"314ada7478a742dbe449e7325315dfd3","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":231.93571,"y":727.94},"width":41.337997,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":null,"textAfter":null,"comments":null,"startOffset":203,"endOffset":213,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618879Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1ff9d13f9e287930b8823212b5570adf","type":"CBI_author","value":"Zhang X","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":255.23132,"y":750.98},"width":39.475555,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"5.8.1/66 Zhang X, ","textAfter":", Niu Z,","comments":null,"startOffset":34,"endOffset":41,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["314ada7478a742dbe449e7325315dfd3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f85eee6502443b90b30e0991817e25f7","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":386.3098,"y":727.94},"width":37.94171,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"of Toxicology, 33(6):532-41. ","textAfter":" File No.","comments":null,"startOffset":240,"endOffset":248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["314ada7478a742dbe449e7325315dfd3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"01d9ea6f655ba0fb8d3cc4ef5467ceaf","type":"CBI_author","value":"Niu","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: KLIMISCH SCORE: 2","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":302.2127,"y":750.98},"width":15.940033,"height":10.526819,"page":616}],"sectionNumber":6192,"textBefore":"X, Zhang X, ","textAfter":" Z, Qi","comments":null,"startOffset":43,"endOffset":46,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["314ada7478a742dbe449e7325315dfd3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"58bee3da7d9f7b684c37b67a73f81d17","type":"CBI_author","value":"Lake B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-1: Summary of supplementary studies on SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":94.31999,"y":207.89996},"width":27.144997,"height":10.0905,"page":617}],"sectionNumber":6209,"textBefore":"activity in rats. ","textAfter":", (2014). Report","comments":null,"startOffset":37,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c198dfc856500569633a3a7ea3bc2383","type":"CBI_author","value":"Shearer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-1: Summary of supplementary studies on SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.15303,"y":257.85004},"width":28.45897,"height":10.0905,"page":617}],"sectionNumber":6208,"textBefore":"dietary study (","textAfter":" and Robertson,","comments":null,"startOffset":155,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99d9c5b231c6a3ee1a8b28a0de7707e2","type":"CBI_author","value":"Bhandal","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-1: Summary of supplementary studies on SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":71.784,"y":314.13},"width":31.077995,"height":10.0905,"page":617}],"sectionNumber":6207,"textBefore":"Immunotoxicity review. ","textAfter":" B, (2016).","comments":null,"startOffset":23,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47b3d26a33224b43ac55cea98dd6491f","type":"CBI_author","value":"Lake B","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-1: Summary of supplementary studies on SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.864,"y":257.85004},"width":27.135994,"height":10.0905,"page":617}],"sectionNumber":6208,"textBefore":"of male rats. ","textAfter":", (2014). Report","comments":null,"startOffset":59,"endOffset":65,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3dacd8b01609f617270028f34233189d","type":"CBI_address","value":"Syngenta Ltd. Jealott’s Hill International Research, Bracknell, Berks RG42 6EY","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.8.2. Supplementary studies on the active substance","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":176.62808,"y":714.86},"width":343.75375,"height":10.526819,"page":618}],"sectionNumber":6211,"textBefore":"Concerning Imunotoxicity Potential. ","textAfter":". Laboratory Report","comments":null,"startOffset":107,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b455b2b463f637bf6982ee13bed965b","type":"CBI_author","value":"Bhandal H","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.08945,"y":414.09},"width":48.438873,"height":11.017679,"page":618}],"sectionNumber":6216,"textBefore":"immunotoxic potential. (","textAfter":", 2016) Guidelines:","comments":null,"startOffset":937,"endOffset":946,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618881Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"96a70ff5fe27d0c295b5e70607af8ca9","type":"hint_only","value":"quality assurance","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"EXECUTIVE SUMMARY","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":213.83186,"y":252.09003},"width":82.53038,"height":11.017679,"page":618}],"sectionNumber":6216,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1064,"endOffset":1081,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5a8ed3b29fc30890138cf52ef8137d5b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.8.2. Supplementary studies on the active substance","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":441.16602,"y":703.34},"width":38.05127,"height":10.526819,"page":618}],"sectionNumber":6211,"textBefore":"January 2016. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":250,"endOffset":258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618881Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a468742b0aa56f3cba3e8e7d3b35b4d","type":"CBI_author","value":"Lake B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":199.72772,"y":362.25},"width":34.316208,"height":10.526819,"page":618}],"sectionNumber":6214,"textBefore":"Report: K-CA 5.8.2/02 ","textAfter":" (2015). SYN545974:","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df684ec8c462768fa9ba6fd215c270bb","type":"CBI_author","value":"Bhandal H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.8.2. Supplementary studies on the active substance","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.67598,"y":726.38},"width":47.254242,"height":10.526819,"page":618}],"sectionNumber":6211,"textBefore":"Report: K-CA 5.8.2/01 ","textAfter":" (2016). SYN545974:","comments":null,"startOffset":22,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0eccddbd7b6f83a6abe6a9a332d20594","type":"CBI_address","value":"Leatherhead Food Research (LFR)","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":133.82,"y":339.21},"width":158.70221,"height":10.526819,"page":618}],"sectionNumber":6214,"textBefore":"to Male Rats. ","textAfter":", Molecular Sciences","comments":null,"startOffset":189,"endOffset":220,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"920295969de0e49695ffcc16ccbb66de","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: EXECUTIVE SUMMARY","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":327.15375,"y":316.28998},"width":38.160828,"height":10.526819,"page":618}],"sectionNumber":6214,"textBefore":"August 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":395,"endOffset":403,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b21563d1c380481fcba10bf3d24d9193","type":"CBI_author","value":"Lowry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":179.18,"y":226.02002},"width":29.759201,"height":10.929359,"page":619}],"sectionNumber":6219,"textBefore":"general procedure of ","textAfter":" et al.","comments":null,"startOffset":930,"endOffset":935,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5b1737e6d1ee4f5be2bf57c59bdee58","type":"CBI_author","value":"Lake","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":388.87,"y":226.02002},"width":23.687195,"height":10.929359,"page":619}],"sectionNumber":6219,"textBefore":"described previously (","textAfter":", 1987), employing","comments":null,"startOffset":976,"endOffset":980,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"236c5488bf7c7adea28f903479cf0871","type":"CBI_address","value":"Charles River","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":166.82,"y":489.83},"width":63.06688,"height":11.017679,"page":619}],"sectionNumber":6218,"textBefore":"520843) performed at ","textAfter":" (Preclinical Services,","comments":null,"startOffset":154,"endOffset":167,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618882Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"98cb140d6e82e4266c66b9d71764c8e2","type":"CBI_address","value":"CRL","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":461.04083,"y":502.43},"width":22.384491,"height":11.017679,"page":619}],"sectionNumber":6218,"textBefore":"male rats (","textAfter":" Study No.","comments":null,"startOffset":119,"endOffset":122,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fd62b3719231a9f6718f821bec5588b3","type":"CBI_author","value":"Potter","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":326.61},"width":27.341446,"height":11.017679,"page":619}],"sectionNumber":6219,"textBefore":"7.4 using a ","textAfter":" type, Teflon-glass,","comments":null,"startOffset":288,"endOffset":294,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9bee44a559f4fb62a45ceb2571e8619e","type":"CBI_author","value":"Finch","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":201.89,"y":163.5},"width":28.611053,"height":10.929359,"page":619}],"sectionNumber":6219,"textBefore":"mM UDPGA (","textAfter":" et al.","comments":null,"startOffset":1246,"endOffset":1251,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"08867f362c96e723534043898b45194f","type":"CBI_author","value":"Sprague","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":75.52002},"width":37.08976,"height":11.017679,"page":619}],"sectionNumber":6219,"textBefore":"(BNF) treated male ","textAfter":"-Dawley rats. Statistics:","comments":null,"startOffset":1799,"endOffset":1806,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a35ec3c36f59062b56df21e1c5d73169","type":"CBI_author","value":"Lake","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":319.15,"y":326.61},"width":23.687195,"height":10.929359,"page":619}],"sectionNumber":6219,"textBefore":"driven homogeniser (","textAfter":", 1987). Liver","comments":null,"startOffset":341,"endOffset":345,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f82354cc715887c3698224871911ecd6","type":"PII","value":"(224) 15","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-3: Hepatic microsomal UDPglucuronosyltransferase activity towards thyroxine as\nsubstrate","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":407.161,"y":203.34003},"width":20.655975,"height":10.0905,"page":620},{"topLeft":{"x":445.06,"y":203.34003},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6225,"textBefore":null,"textAfter":null,"comments":null,"startOffset":53,"endOffset":61,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787318Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2ba7a950aa3bac3c2ddc28fd4d2af776","type":"PII","value":"(421) 30","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-3: Hepatic microsomal UDPglucuronosyltransferase activity towards thyroxine as\nsubstrate","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.31793,"y":185.94},"width":20.655975,"height":10.0905,"page":620},{"topLeft":{"x":445.06,"y":185.94},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6226,"textBefore":null,"textAfter":null,"comments":null,"startOffset":55,"endOffset":63,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618883Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787318Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a8edac5f0ff06f6edf859408390b081e","type":"PII","value":"8000 40","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-2: Hepatic microsomal protein content","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.86,"y":490.31},"width":19.044998,"height":10.018499,"page":620},{"topLeft":{"x":378.79,"y":490.55},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6220,"textBefore":null,"textAfter":null,"comments":null,"startOffset":139,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618884Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787319Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"85347916a99215799de885071715bc5c","type":"PII","value":"(158) 10","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-3: Hepatic microsomal UDPglucuronosyltransferase activity towards thyroxine as\nsubstrate","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.844,"y":220.73999},"width":20.421997,"height":10.0905,"page":620},{"topLeft":{"x":449.62,"y":220.73999},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6224,"textBefore":null,"textAfter":null,"comments":null,"startOffset":48,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618884Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787319Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e334ce64f2ea9ba2485af34c366b3d2a","type":"PII","value":"250 35","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-2: Hepatic microsomal protein content","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":174.14,"y":525.11},"width":14.619995,"height":10.018499,"page":620},{"topLeft":{"x":383.23,"y":525.35},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6220,"textBefore":null,"textAfter":null,"comments":null,"startOffset":92,"endOffset":98,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618884Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787319Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e72ba282b053d018e3a6e4b9094fdb22","type":"PII","value":"(347) 11","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-3: Hepatic microsomal UDPglucuronosyltransferase activity towards thyroxine as\nsubstrate","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":311.051,"y":185.94},"width":20.655975,"height":10.0905,"page":620},{"topLeft":{"x":352.87,"y":185.94},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6226,"textBefore":null,"textAfter":null,"comments":null,"startOffset":35,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618884Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787319Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"46bbc546e380431f47612998bb100807","type":"PII","value":"8000 16","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-3: Hepatic microsomal UDPglucuronosyltransferase activity towards thyroxine as\nsubstrate","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":99.864,"y":185.70001},"width":19.044998,"height":10.018499,"page":620},{"topLeft":{"x":167.42,"y":185.94},"width":10.054001,"height":10.0905,"page":620}],"sectionNumber":6226,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":7,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618885Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78732Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f65a8e5de443155f52e2608d1f5c72fd","type":"PII","value":"1500 38","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-2: Hepatic microsomal protein content","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":171.86,"y":507.71},"width":19.044998,"height":10.018499,"page":620},{"topLeft":{"x":378.79,"y":507.95},"width":10.053986,"height":10.0905,"page":620}],"sectionNumber":6220,"textBefore":null,"textAfter":null,"comments":null,"startOffset":114,"endOffset":121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618885Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78732Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"14978a3167bd8cbb444bbad0afd20a67","type":"CBI_address","value":"CRL","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":134.48401,"y":639.86},"width":22.384476,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"Charles River (","textAfter":") Study No.","comments":null,"startOffset":2387,"endOffset":2390,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618885Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a5538f11881e30b3b9b182aabcf9e450","type":"PII","value":"253-262","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":86.18399,"y":589.1},"width":37.596,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"Appl. Pharmacol. 214, ","textAfter":". Lake BG,","comments":null,"startOffset":2732,"endOffset":2739,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618885Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78732Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f2d4f19896da28f8dc62dc1e5c2dd13b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":340.45035,"y":390.81},"width":38.260437,"height":10.526819,"page":621}],"sectionNumber":6228,"textBefore":"November 2014. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":309,"endOffset":317,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618885Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a525c0fc205ac4d02e83afc66c4319f9","type":"CBI_author","value":"Henderson","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":273.70947,"y":614.42},"width":48.60446,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"KL, Martin T, ","textAfter":" WJ, Capen","comments":null,"startOffset":2570,"endOffset":2579,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7b058f6c6f37702427801d34b2ad063f","type":"CBI_author","value":"Capen","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":344.47586,"y":614.42},"width":29.18512,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"T, Henderson WJ, ","textAfter":" CC, Butler","comments":null,"startOffset":2584,"endOffset":2589,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"733548be04956146a6a8d6919f150457","type":"CBI_author","value":"Lake","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":450.01834,"y":614.42},"width":22.936493,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"CC, Butler WH, ","textAfter":" BG, 2006.","comments":null,"startOffset":2605,"endOffset":2609,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c9ee6be81399a0be34746fef1f1f5bf7","type":"CBI_author","value":"Lake B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.20581,"y":425.39},"width":34.555237,"height":10.526819,"page":621}],"sectionNumber":6228,"textBefore":"Report: K-CA 5.8.2/03 ","textAfter":" (2014). SYN545974:","comments":null,"startOffset":22,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ed4017ceaeb50389221ca5b8caffd3f","type":"CBI_author","value":"Randall","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":244.0781,"y":514.55},"width":35.146698,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"NJ, Farr AL, ","textAfter":" RJ, 1951.","comments":null,"startOffset":2996,"endOffset":3003,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a3403ec4c25a2fd7f5104aa94d7277f6","type":"CBI_author","value":"Farr","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.00179,"y":514.55},"width":19.304321,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"OH, Rosebrough NJ, ","textAfter":" AL, Randall","comments":null,"startOffset":2987,"endOffset":2991,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed60a1035c524c88f37a1f1e303daf07","type":"CBI_author","value":"Snell","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":136.75824,"y":551.87},"width":23.742416,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"xenobiotic metabolism, In: ","textAfter":" K., Mullock","comments":null,"startOffset":2855,"endOffset":2860,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618886Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4023a545b5747fdf7001ece69ce650cf","type":"published_information","value":"Press","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":505.50787,"y":551.87},"width":24.338562,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2934,"endOffset":2939,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c142a89aef052efc519f48b1ff7e3d3","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":652.94},"width":74.9128,"height":10.929359,"page":621}],"sectionNumber":6230,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2360,"endOffset":2370,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"41696284c02c8a790bf0baca37116af7","type":"CBI_address","value":"Leatherhead Food Research (LFR)","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":162.11876,"y":413.85},"width":147.93993,"height":10.526819,"page":621}],"sectionNumber":6228,"textBefore":"Activity In Vitro. ","textAfter":", Molecular Sciences","comments":null,"startOffset":101,"endOffset":132,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a01a8702951b05179e40076556744d6b","type":"CBI_author","value":"Lowry","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":514.55},"width":30.388474,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"Oxford, pp. 183−215. ","textAfter":" OH, Rosebrough","comments":null,"startOffset":2962,"endOffset":2967,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ad7a3124b087dee616758ea8fa1a565","type":"CBI_author","value":"Butler","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":395.80087,"y":614.42},"width":28.412323,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"WJ, Capen CC, ","textAfter":" WH, Lake","comments":null,"startOffset":2594,"endOffset":2600,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"08f7f01af466d601fcece0a43d5985a7","type":"CBI_author","value":"Osimitz TG","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":114.60095,"y":614.42},"width":53.329605,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2536,"endOffset":2546,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["NER"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"53dd00485c34e57fdc0e31d715347533","type":"CBI_author","value":"Mullock B.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":179.53825,"y":551.87},"width":51.61841,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2865,"endOffset":2875,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["NER"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dc10adacd3956debc710566a88343836","type":"CBI_author","value":"Gabriel","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":172.50574,"y":614.42},"width":33.932327,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"JM., Osimitz TG, ","textAfter":" KL, Martin","comments":null,"startOffset":2548,"endOffset":2555,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618887Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25b7371abe22870d4c59bbb7433a2ab3","type":"CBI_address","value":"Charles River","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":639.86},"width":63.42018,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"liver weight. REFERENCES: ","textAfter":" (CRL) Study","comments":null,"startOffset":2372,"endOffset":2385,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"745c3116c9e0e1925d2f21db845207b8","type":"PII","value":"265-275","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.93791,"y":501.83},"width":37.672104,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"Biol. Chem. 193, ","textAfter":". (Lake B,","comments":null,"startOffset":3085,"endOffset":3092,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787321Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0053161e61467fd8933cf90e5e065f0f","type":"CBI_author","value":"Finch","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":614.42},"width":26.193268,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"administration in rats. ","textAfter":" JM., Osimitz","comments":null,"startOffset":2525,"endOffset":2530,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb9eeea7a9a682c4c9717022957bf0a0","type":"CBI_author","value":"Martin T","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":228.62206,"y":614.42},"width":40.368668,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"TG, Gabriel KL, ","textAfter":", Henderson WJ,","comments":null,"startOffset":2560,"endOffset":2568,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95a873eca95e967595b6e3c0bee49c4a","type":"CBI_author","value":"Rosebrough","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":121.30224,"y":514.55},"width":54.256996,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"183−215. Lowry OH, ","textAfter":" NJ, Farr","comments":null,"startOffset":2972,"endOffset":2982,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6b93fa9fe08d04eefc5913a4d67ab6b","type":"CBI_author","value":"Lake","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":564.47},"width":22.93647,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"Pharmacol. 214, 253-262. ","textAfter":" BG, 1987.","comments":null,"startOffset":2741,"endOffset":2745,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e34d1cb6ea3488b4e13a2a18d8eb9ba9","type":"CBI_author","value":"Lake B","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":468.32944,"y":477.23},"width":33.06018,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"193, 265-275. (","textAfter":", 2015) Guidelines:","comments":null,"startOffset":3095,"endOffset":3101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3ad81319dd7476f7abcaa5ba7d6d73e8","type":"CBI_address","value":"CRL","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":255.2395,"y":639.86},"width":22.384491,"height":11.017679,"page":621}],"sectionNumber":6230,"textBefore":"No. 520843 (","textAfter":" Report No.","comments":null,"startOffset":2410,"endOffset":2413,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618888Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["4023a545b5747fdf7001ece69ce650cf"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b940bdc9c5a654f72ee97f088d20a2ae","type":"CBI_author","value":"Han","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: SYN545974 is not an inhibitor of rat thyroid peroxidase activity in vitro.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.755,"y":574.67},"width":15.949005,"height":10.0905,"page":622}],"sectionNumber":6233,"textBefore":"Wistar ","textAfter":null,"comments":null,"startOffset":40,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5e123dc3ae2d251587066e7344fab939","type":"hint_only","value":"Purity:","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: SYN545974 is not an inhibitor of rat thyroid peroxidase activity in vitro.","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":689.78},"width":28.467995,"height":10.018499,"page":622}],"sectionNumber":6232,"textBefore":null,"textAfter":null,"comments":null,"startOffset":105,"endOffset":112,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3116848b058d7e3f590641da6a71963b","type":"CBI_author","value":"Lowry","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":122.9,"y":219.89996},"width":29.759209,"height":10.929359,"page":622}],"sectionNumber":6235,"textBefore":"general procedure of ","textAfter":" et al.","comments":null,"startOffset":1450,"endOffset":1455,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"45f35e2cf1db3aa481c2f6b997514bca","type":"CBI_author","value":"Kent","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: SYN545974 is not an inhibitor of rat thyroid peroxidase activity in vitro.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":332.47107,"y":548.99},"width":18.496002,"height":10.0905,"page":622}],"sectionNumber":6233,"textBefore":"UK Ltd., Margate, ","textAfter":", CT9 4LT),","comments":null,"startOffset":113,"endOffset":117,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce70bc7a6fff1f8ff7b5b9113ebc3893","type":"CBI_address","value":"Charles River UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: SYN545974 is not an inhibitor of rat thyroid peroxidase activity in vitro.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":211.61,"y":548.99},"width":65.92601,"height":10.0905,"page":622}],"sectionNumber":6233,"textBefore":null,"textAfter":" Ltd., Margate,","comments":null,"startOffset":81,"endOffset":97,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e21e889612b9273dbac04eddfd9d2653","type":"CBI_author","value":"Doerge","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":347.23,"y":157.38},"width":33.965424,"height":10.929359,"page":622}],"sectionNumber":6235,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1829,"endOffset":1835,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c5664b364eff74d46513e70be91d3faa","type":"CBI_author","value":"Potter","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":388.03885,"y":333.09},"width":27.231049,"height":11.017679,"page":622}],"sectionNumber":6235,"textBefore":"7.4 using a ","textAfter":" type, Teflon-glass,","comments":null,"startOffset":762,"endOffset":768,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d3c982b8a4c19f6bae98d9254eac9a02","type":"CBI_author","value":"Randall","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":244.0781,"y":148.73999},"width":35.146698,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"NJ, Farr AL, ","textAfter":" RJ, 1951.","comments":null,"startOffset":1090,"endOffset":1097,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a2d413fa53a71da4cf5fcd0af0cef52a","type":"CBI_author","value":"Doerge DL","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":261.33002},"width":51.397606,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":537,"endOffset":546,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["NER"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1557ed533b818b06eba065201b2d66f0","type":"CBI_author","value":"Churchwell MI,","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":216.87547,"y":261.33002},"width":71.766495,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":567,"endOffset":581,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["NER"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"be7a1cf70486d0bac89d83e258518a21","type":"CBI_author","value":"Snell","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":136.75824,"y":186.06},"width":23.742416,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"xenobiotic metabolism, In: ","textAfter":" K., Mullock","comments":null,"startOffset":949,"endOffset":954,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"37683110b5749a2cdd1b582adc13ecb7","type":"CBI_author","value":"Divi RL","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":173.95198,"y":261.33002},"width":37.84047,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":558,"endOffset":565,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61889Z"}],"manualChanges":[],"engines":["NER"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e09122506a7e9b20ec5bcf021ebcdb80","type":"CBI_author","value":"Farr","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":199.00179,"y":148.73999},"width":19.304321,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"OH, Rosebrough NJ, ","textAfter":" AL, Randall","comments":null,"startOffset":1081,"endOffset":1085,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb8249ebbdf322bde208d49f02d120ed","type":"published_information","value":"Press","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":505.0307,"y":186.06},"width":24.338562,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1028,"endOffset":1033,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ae8a230573fa41d492dbc1b79543bc2","type":"CBI_author","value":"Green","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":150.93358,"y":248.58002},"width":27.882416,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"peroxidase by Leucomalachite ","textAfter":". Chemical Research","comments":null,"startOffset":653,"endOffset":658,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618891Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df5228d26db50c1e189527307fe05766","type":"CBI_author","value":"Lowry","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":148.73999},"width":30.388474,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"Oxford, pp. 183−215. ","textAfter":" OH, Rosebrough","comments":null,"startOffset":1056,"endOffset":1061,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618891Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a25db28aa3a145264fc18782680527a3","type":"CBI_author","value":"Blank","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":244.82495,"y":753.5},"width":27.26413,"height":11.017679,"page":623}],"sectionNumber":6235,"textBefore":"μM hydrogen peroxide. ","textAfter":" incubations (to","comments":null,"startOffset":2714,"endOffset":2719,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"927135095099f8b423e73f3d93f83944","type":"CBI_author","value":"Mullock B.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":179.53825,"y":186.06},"width":51.61841,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":959,"endOffset":969,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618891Z"}],"manualChanges":[],"engines":["NER"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1e361c75b2ace2558303c964c592f165","type":"PII","value":"265-275","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.93791,"y":136.02002},"width":37.672104,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"Biol. Chem. 193, ","textAfter":". (Lake B,","comments":null,"startOffset":1179,"endOffset":1186,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787322Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1ed1dbeab768be29d23403bbd51a5e3e","type":"CBI_author","value":"Ahr HJ","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":139.29741,"y":235.97998},"width":37.928787,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":721,"endOffset":727,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"}],"manualChanges":[],"engines":["NER"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ea9570d0a58a0e6535995d608e3cc957","type":"CBI_author","value":"Freyburger A","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":235.97998},"width":65.69439,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"Toxicology 11, 1098-1104. ","textAfter":", Ahr HJ,","comments":null,"startOffset":707,"endOffset":719,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10b504df8010f345e611c2cf09a81969","type":"CBI_author","value":"Rosebrough","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":121.30224,"y":148.73999},"width":54.256996,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"183−215. Lowry OH, ","textAfter":" NJ, Farr","comments":null,"startOffset":1066,"endOffset":1076,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee6dd3519780b2b0c23869d4dd2e1d93","type":"PII","value":"1098-1104","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.34735,"y":248.58002},"width":48.802612,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"in Toxicology 11, ","textAfter":". Freyburger A,","comments":null,"startOffset":696,"endOffset":705,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787323Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0276cbcac64950b83836355152a5124c","type":"CBI_author","value":"Chang","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":120.58465,"y":261.33002},"width":29.781288,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"REFERENCES: Doerge DL, ","textAfter":" HC, Divi","comments":null,"startOffset":548,"endOffset":553,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99d04a289f87cb82f86686e8b4e67c35","type":"CBI_author","value":"Lake","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":198.65997},"width":22.93647,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"N,N,N',N'tetramethylthiorea. Toxicology, 169-175. ","textAfter":" BG, 1987.","comments":null,"startOffset":835,"endOffset":839,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618892Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4d30333c2f5e689e5f709aa1a6207936","type":"CBI_author","value":"Lake B","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":468.32944,"y":111.41998},"width":33.06018,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"193, 265-275. (","textAfter":", 2014)","comments":null,"startOffset":1189,"endOffset":1195,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":["fb8249ebbdf322bde208d49f02d120ed"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b7309e7f181151b88498de172138ffe5","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"RESULTS AND DISCUSSION","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":273.93},"width":74.9128,"height":10.929359,"page":623}],"sectionNumber":6237,"textBefore":null,"textAfter":null,"comments":null,"startOffset":525,"endOffset":535,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d9ac48214f2022fc44371cf75a9d4a7","type":"PII","value":"169-175","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":206.34334,"y":223.26001},"width":37.70668,"height":11.017679,"page":623}],"sectionNumber":6237,"textBefore":"of N,N,N',N'tetramethylthiorea. Toxicology, ","textAfter":". Lake BG,","comments":null,"startOffset":826,"endOffset":833,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787323Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b992ff10706bda0e46e5bda50c26b1b4","type":"CBI_address","value":"Syngenta Ltd. Jealott’s Hill International Research, Bracknell, Berks RG42 6EY","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.8.3. Studies on endocrine disruption","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":183.0921,"y":583.67},"width":337.4989,"height":10.526819,"page":624}],"sectionNumber":6238,"textBefore":"for Endocrine Disruption. ","textAfter":". Report No.","comments":null,"startOffset":99,"endOffset":177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"740112f50738334e5a458c675930065c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.8.3. Studies on endocrine disruption","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":432.09238,"y":572.15},"width":38.160828,"height":10.526819,"page":624}],"sectionNumber":6238,"textBefore":"December 2015. Unpublished. ","textAfter":" File No.","comments":null,"startOffset":232,"endOffset":240,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bcc7f1d25b6a5143f67ba9a17aebc3ee","type":"PII","value":"(2002) 19","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.8.3. Studies on endocrine disruption","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":696.98},"width":30.344315,"height":11.017679,"page":624},{"topLeft":{"x":93.384,"y":702.02},"width":7.9600067,"height":9.163321,"page":624}],"sectionNumber":6240,"textBefore":"defined by WHO/IPCS ","textAfter":" and specific","comments":null,"startOffset":336,"endOffset":345,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787323Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1936d3bab4b4e39553df99235d62977f","type":"CBI_author","value":"Lake","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test Material (Purity): Not applicable","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":195.56831,"y":239.58002},"width":22.936493,"height":11.017679,"page":624}],"sectionNumber":6241,"textBefore":"Robertson, 2015 and ","textAfter":", 2014), and","comments":null,"startOffset":1173,"endOffset":1177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618893Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b705dbb641a90805c47187c0a7a4c49d","type":"CBI_author","value":"Green","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.8.3. Studies on endocrine disruption","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":204.52844,"y":595.1},"width":25.401993,"height":10.526819,"page":624}],"sectionNumber":6238,"textBefore":"Report: K-CA 5.8.3/01 ","textAfter":" RM. (2015).","comments":null,"startOffset":22,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618894Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a4eec1ae82fa0f0e1ad0fd6cb7c3db8","type":"CBI_author","value":"Shearer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test Material (Purity): Not applicable","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":498.07697,"y":252.21002},"width":34.550476,"height":11.017679,"page":624}],"sectionNumber":6241,"textBefore":"Section 3.2.1 (","textAfter":" and Robertson,","comments":null,"startOffset":1141,"endOffset":1148,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618894Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75780f58c898d8b51937e2828c06bfda","type":"CBI_author","value":"Field","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":129.12239,"y":511.43},"width":23.676178,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"and Münchwilen, Switzerland. ","textAfter":" trials have","comments":null,"startOffset":431,"endOffset":436,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618894Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce5070ed86102164e32be057209422fe","type":"CBI_address","value":"Greensboro","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":371.55707,"y":524.15},"width":52.32492,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"Jealott’s Hill, UK, ","textAfter":", US and","comments":null,"startOffset":387,"endOffset":397,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618894Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d22a71001b5e32c4def8c1761d2e4ea6","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":178.98431,"y":536.75},"width":41.870102,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"scale at a ","textAfter":" plant at","comments":null,"startOffset":248,"endOffset":256,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2491c22c5541f808f999e6745fcfbf41","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":221.63377,"y":461.51},"width":41.88115,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"Health group of ","textAfter":" has maintained","comments":null,"startOffset":737,"endOffset":745,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db6373ec64fcf8ba401b15e5b251021c","type":"CBI_author","value":"Green","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test Material (Purity): Not applicable","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.68945,"y":634.34},"width":27.860321,"height":11.017679,"page":625}],"sectionNumber":6241,"textBefore":"or (sub)populations. (","textAfter":" RM, 2015)","comments":null,"startOffset":2961,"endOffset":2966,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e440a892e818e554f59bda356ed6e244","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":351.5022,"y":436.19},"width":41.881104,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"query of the ","textAfter":" internal database","comments":null,"startOffset":962,"endOffset":970,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da137c82b9aec456668a4c7e969e1550","type":"CBI_author","value":"Brazil","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":383.4029,"y":498.83},"width":27.94867,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"Canada, Argentina, Chile, ","textAfter":", Mexico. The","comments":null,"startOffset":587,"endOffset":593,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f371d32a3bfbb8a55e255ca8cddadf9b","type":"CBI_address","value":"Jealott’s Hill","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":278.76584,"y":524.15},"width":60.77054,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"R&D sites at ","textAfter":", UK, Greensboro,","comments":null,"startOffset":367,"endOffset":381,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7dedc529375578c48b274e90f3d148f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9. MEDICAL DATA AND INFORMATION","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":163.27632,"y":524.15},"width":42.002594,"height":11.017679,"page":625}],"sectionNumber":6242,"textBefore":"taken place at ","textAfter":" R&D sites","comments":null,"startOffset":345,"endOffset":353,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b9584b3759a563baf3a88c753871b4d3","type":"PII","value":"17 4072","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":326.23,"y":194.70001},"width":11.02002,"height":10.526819,"page":626},{"topLeft":{"x":389.71,"y":194.70001},"width":21.100037,"height":10.526819,"page":626}],"sectionNumber":6250,"textBefore":null,"textAfter":null,"comments":null,"startOffset":114,"endOffset":121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618896Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787324Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"010a72649b4682e115872f6f9001a5ca","type":"PII","value":"17 3836","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":326.23,"y":153.89996},"width":11.02002,"height":10.526819,"page":626},{"topLeft":{"x":389.71,"y":153.89996},"width":21.100037,"height":10.526819,"page":626}],"sectionNumber":6251,"textBefore":null,"textAfter":null,"comments":null,"startOffset":100,"endOffset":107,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618896Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787324Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ecca6bfab77f96350c7c42fe2b055c85","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.9.6. Proposed treatment: first aid measures, antidotes, medical treatment","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":80.39904,"y":716.78},"width":41.90319,"height":11.017679,"page":626}],"sectionNumber":6248,"textBefore":"when calling the ","textAfter":" emergency number,","comments":null,"startOffset":184,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ef1c7551008e75e49533d93ec77f6d1d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":123.17999},"width":34.47101,"height":10.0905,"page":627}],"sectionNumber":6261,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":256,"endOffset":264,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"84a4883bd8e765c38a3481176e97082e","type":"CBI_author","value":"Klimisch","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":64.104,"y":529.19},"width":41.406395,"height":11.017679,"page":627}],"sectionNumber":6258,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2425,"endOffset":2433,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618896Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":["6ca5293235e29ae64a587d6bfcd59d95"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e49e3bc1c19c3743c6df0c7815226d10","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":174.89996},"width":116.00198,"height":10.0905,"page":627},{"topLeft":{"x":181.94,"y":164.58002},"width":113.87799,"height":10.0905,"page":627}],"sectionNumber":6261,"textBefore":"the Rat Syngenta ","textAfter":", 34214 GLP","comments":null,"startOffset":177,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618896Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a15af3cc0be4a5441479fd7a70d82a56","type":"CBI_author","value":"Hutton E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":102.06},"width":36.072998,"height":10.0905,"page":627}],"sectionNumber":6262,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"20827cbee1ba2ef75cbd6cd9f3859b41","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.10. REFERENCES RELIED ON","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":102.26,"y":477.95},"width":62.88401,"height":10.929359,"page":627}],"sectionNumber":6413,"textBefore":null,"textAfter":null,"comments":null,"startOffset":8,"endOffset":18,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30c3512392fc38f5650c41f0858bae03","type":"CBI_author","value":"Webbley K., Williams D.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":392.85},"width":53.838997,"height":10.0905,"page":627},{"topLeft":{"x":82.704,"y":382.41},"width":44.87799,"height":10.0905,"page":627}],"sectionNumber":6260,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2673cd7ff9fcef2b457eefada07bf8b1","type":"CBI_author","value":"Hutton E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":237.06},"width":36.072998,"height":10.0905,"page":627}],"sectionNumber":6261,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de805cab3704fa2dc71f5f0a9b26f03c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":185.34003},"width":34.47101,"height":10.0905,"page":627}],"sectionNumber":6261,"textBefore":"in the Rat ","textAfter":" Charles River","comments":null,"startOffset":168,"endOffset":176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad1c551671cefd0cd02216f997702402","type":"hint_only","value":"author","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":82.704,"y":455.15},"width":28.872993,"height":10.018499,"page":627}],"sectionNumber":6259,"textBefore":null,"textAfter":null,"comments":null,"startOffset":11,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c2814dafb597c6c72ce21a60c9579a56","type":"CBI_address","value":"Quotient Bioresearch Limited, Northamptonshire, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":310.05},"width":115.966034,"height":10.0905,"page":627},{"topLeft":{"x":181.94,"y":299.73004},"width":68.725006,"height":10.0905,"page":627},{"topLeft":{"x":281.71402,"y":299.73004},"width":13.995972,"height":10.0905,"page":627}],"sectionNumber":6260,"textBefore":"14C- SYN545974 Syngenta ","textAfter":", SGA/64 GLP","comments":null,"startOffset":222,"endOffset":272,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618897Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a83cf4dc5e06277c41c7c6c07d22abb","type":"CBI_author","value":"Andreae M","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":139.79288,"y":61.599976},"width":48.817963,"height":10.526819,"page":627}],"sectionNumber":6413,"textBefore":"20 Klimisch H-J, ","textAfter":" and Tillmann","comments":null,"startOffset":46,"endOffset":55,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2dfc12c5d164296abd8d06ec2b15e456","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":258.33002},"width":34.47101,"height":10.0905,"page":627}],"sectionNumber":6260,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":299,"endOffset":307,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"020d887f7918f3e5b2f7ddd4217b94a7","type":"CBI_author","value":"Klimisch H-J","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":75.744,"y":61.599976},"width":57.19043,"height":10.526819,"page":627}],"sectionNumber":6413,"textBefore":null,"textAfter":null,"comments":null,"startOffset":32,"endOffset":44,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0f866eac759171484a5ffdd1b0e035ea","type":"CBI_author","value":"Tillmann U","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":212.56064,"y":61.599976},"width":50.023132,"height":10.526819,"page":627}],"sectionNumber":6413,"textBefore":"Andreae M and ","textAfter":" (1997) A","comments":null,"startOffset":60,"endOffset":70,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d14202f8431a14dda6abb32a2b8c25c7","type":"PII","value":"(1997) 20","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":165.98,"y":529.19},"width":30.233917,"height":11.017679,"page":627},{"topLeft":{"x":195.17,"y":534.23},"width":7.9599915,"height":9.163321,"page":627}],"sectionNumber":6258,"textBefore":"Klimisch et al ","textAfter":" using the","comments":null,"startOffset":2440,"endOffset":2449,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787325Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c3705225ead167d3f69866421823f85c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":320.37},"width":34.47101,"height":10.0905,"page":627}],"sectionNumber":6260,"textBefore":"of 14C- SYN545974 ","textAfter":" Quotient Bioresearch","comments":null,"startOffset":213,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e83f33d7fe9c5b344c604b768cbfae68","type":"hint_only","value":"references","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.98039216,0.59607846,0.96862745],"positions":[{"topLeft":{"x":64.104,"y":585.71},"width":46.30818,"height":11.017679,"page":627}],"sectionNumber":6258,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2039,"endOffset":2049,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618898Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6ca5293235e29ae64a587d6bfcd59d95","type":"published_information","value":"EFSA Journal","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":124.98899,"y":720.98},"width":52.767998,"height":10.0905,"page":627}],"sectionNumber":6258,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1146,"endOffset":1158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618899Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b815fa076774b64fd6ca6fec740d4066","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":516.23},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":438,"endOffset":446,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618899Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"87e3c5eeb51d291599672cec18266272","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":578.39},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"in the Rat ","textAfter":" Charles River","comments":null,"startOffset":350,"endOffset":358,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618899Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0fa8e658460944115e5360731340647f","type":"CBI_author","value":"Hutton E., OHagan P.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":640.46},"width":54.090996,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":630.14},"width":40.536987,"height":10.0905,"page":628}],"sectionNumber":6265,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618899Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f936f34618eefd9295f339543b3c328e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":661.7},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":178,"endOffset":186,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618899Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"75b64359a4a5081108d02d1290f6c913","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":723.74},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"in the Rat ","textAfter":" Charles River","comments":null,"startOffset":90,"endOffset":98,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618899Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0728696d550a8c4796383abc36a6270b","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":713.42},"width":116.00198,"height":10.0905,"page":628},{"topLeft":{"x":181.94,"y":703.1},"width":113.87799,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"the Rat Syngenta ","textAfter":", 34340 GLP","comments":null,"startOffset":99,"endOffset":152,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ddb1206e38c0869468696b38d2ab3aa2","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":453.71},"width":116.00198,"height":10.0905,"page":628},{"topLeft":{"x":181.94,"y":443.27},"width":113.87799,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"in Rat Syngenta ","textAfter":", 34216 GLP","comments":null,"startOffset":533,"endOffset":586,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2fd031cf1ffa202636a659dd79212f5f","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":308.25},"width":116.00198,"height":10.0905,"page":628},{"topLeft":{"x":181.94,"y":297.93},"width":113.87799,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"Intravenous Administration Syngenta ","textAfter":", 33409 GLP","comments":null,"startOffset":767,"endOffset":820,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e5c25dca340226a77900f2378bd07681","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":162.77997},"width":116.00198,"height":10.0905,"page":628},{"topLeft":{"x":181.94,"y":152.46002},"width":113.87799,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"Intravenous Administration Syngenta ","textAfter":", 33408 GLP","comments":null,"startOffset":1003,"endOffset":1056,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9740ac94c4cb1153c06d0d7f75697f67","type":"CBI_author","value":"Tomlinson J., Hutton E., Green M., Allan G.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":89.94403},"width":54.073006,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":79.47998},"width":54.090996,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":69.15997},"width":53.965004,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":58.840027},"width":31.914993,"height":10.0905,"page":628}],"sectionNumber":6269,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":58,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bb9c6c23d44ad06bbe95cf4ffffc35e7","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":567.95},"width":116.00198,"height":10.0905,"page":628},{"topLeft":{"x":181.94,"y":557.63},"width":113.87799,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"the Rat Syngenta ","textAfter":", 34107 GLP","comments":null,"startOffset":359,"endOffset":412,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aab5a986ebeb7e76c213e69918c832bc","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":401.85},"width":34.522003,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":612,"endOffset":620,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6189Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"156b08263980cd0d78d8e2bd64223a28","type":"CBI_author","value":"Macdonald M., Jewkes Y.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":495.11},"width":41.473,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":484.67},"width":52.64199,"height":10.0905,"page":628}],"sectionNumber":6266,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3046d3b921896e7362f558e49534b38f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":464.03},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"[14C]SYN545974 in Rat ","textAfter":" Charles River","comments":null,"startOffset":524,"endOffset":532,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a7a9df202ede17092710470a1333895","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":173.22003},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"Single Intravenous Administration ","textAfter":" Charles River","comments":null,"startOffset":994,"endOffset":1002,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"58ebfaba2ccc755a3e44a4f4b4e7b344","type":"CBI_author","value":"Punler M., Harris J.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":380.73},"width":54.073006,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":370.29},"width":31.465004,"height":10.0905,"page":628}],"sectionNumber":6267,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8d328944f98e8ac3bd2f1de6beb3acf6","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":256.52997},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":846,"endOffset":854,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dce153b13ce669a7b8457ddec817bbbc","type":"CBI_author","value":"Punler M., Harris J.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":235.26001},"width":54.073006,"height":10.0905,"page":628},{"topLeft":{"x":82.704,"y":224.94},"width":31.465004,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"27d997105fba94580f80e6163de5b60d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":111.06},"width":34.48001,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":1082,"endOffset":1090,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618901Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bc795766653eadb9c7bf901f8152653","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":318.57},"width":34.47101,"height":10.0905,"page":628}],"sectionNumber":6268,"textBefore":"Single Intravenous Administration ","textAfter":" Charles River","comments":null,"startOffset":758,"endOffset":766,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b22e508eeec493f3be4fbb65b1a44274","type":"CBI_author","value":"Torok-Batho M.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":110.099976},"width":47.49299,"height":10.0905,"page":629},{"topLeft":{"x":82.704,"y":99.77997},"width":11.290001,"height":10.0905,"page":629}],"sectionNumber":6277,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"727fbe225a777b4b909eba74593afef8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":235.26001},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6275,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":182,"endOffset":190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0064286dadb5c99c8fa0133ab0182bbf","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":619.82},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6272,"textBefore":"the Pregnant Rabbit ","textAfter":" Sequani Limited,","comments":null,"startOffset":97,"endOffset":105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f40e92e073498663e02e15239a8d2cf","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":131.34003},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6276,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":175,"endOffset":183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78b24b52116a4030ad8a4feb683d26e4","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":349.65},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6274,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":171,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e5a9ab27c086285a3c03b272616ca25","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":609.38},"width":115.83096,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":599.06},"width":61.830994,"height":10.0905,"page":629}],"sectionNumber":6272,"textBefore":"Pregnant Rabbit Syngenta ","textAfter":", BFI0126 GLP","comments":null,"startOffset":106,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618902Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"37f63a9c8a1194bddcad5e320f053e4c","type":"CBI_address","value":"CiToxLAB Hungary Ltd, Szabadsagpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":401.37},"width":115.99301,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":391.05},"width":113.80603,"height":10.0905,"page":629}],"sectionNumber":6274,"textBefore":"in Rats Syngenta ","textAfter":", 12/344-002P GLP","comments":null,"startOffset":93,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d9093a96f263a6741cbd482458aff5b7","type":"CBI_author","value":"Petus-Arpasy M.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":546.83},"width":49.521004,"height":10.0905,"page":629},{"topLeft":{"x":82.704,"y":536.39},"width":11.290001,"height":10.0905,"page":629}],"sectionNumber":6273,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"efbc352b58ab3e6449b3fde0bd5bc214","type":"CBI_author","value":"Nagy K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":328.41},"width":31.330002,"height":10.0905,"page":629}],"sectionNumber":6275,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0597ac984bbb3f0a46fbf509d313f752","type":"CBI_author","value":"Petus-Arpasy M.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":432.47},"width":49.521004,"height":10.0905,"page":629},{"topLeft":{"x":82.704,"y":422.15},"width":11.290001,"height":10.0905,"page":629}],"sectionNumber":6274,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0508057f9f0afceee69bbdde7ecaf1e8","type":"CBI_address","value":"CiToxLAB Hungary Ltd, Szabadsagpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":79.0},"width":115.99301,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":68.67999},"width":113.86899,"height":10.0905,"page":629}],"sectionNumber":6277,"textBefore":"in Rabbits Syngenta ","textAfter":", 12/344-005N","comments":null,"startOffset":95,"endOffset":141,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6df218d5591346142c8e4590372ee8bd","type":"CBI_author","value":"Torok-Batho M.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":214.02002},"width":47.49299,"height":10.0905,"page":629},{"topLeft":{"x":82.704,"y":203.70001},"width":11.290001,"height":10.0905,"page":629}],"sectionNumber":6276,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"92e5350f143650478591ce393374fd41","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":453.71},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6273,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":196,"endOffset":204,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618903Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a92b97a4595142db01d9c7e0dc7fdbf7","type":"CBI_address","value":"CiToxLAB Hungary Ltd, Szabadsagpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":505.43},"width":116.05902,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":495.11},"width":113.80603,"height":10.0905,"page":629}],"sectionNumber":6273,"textBefore":"Down Procedure) Syngenta ","textAfter":", 12/344-001P GLP","comments":null,"startOffset":118,"endOffset":164,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618904Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b24f6a3121e3698b80789f2057be48bc","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":411.69},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6274,"textBefore":"Study in Rats ","textAfter":" CiToxLAB Hungary","comments":null,"startOffset":84,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618904Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"beb826bc7424e9f510351dc2b6784e5d","type":"CBI_address","value":"CiToxLAB Hungary Ltd, Szabadsagpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":287.01},"width":115.99301,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":276.69},"width":113.80603,"height":10.0905,"page":629}],"sectionNumber":6275,"textBefore":"the Rat Syngenta ","textAfter":", 12/334-004P GLP","comments":null,"startOffset":104,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618904Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9a6b14165d085f3ffcea3b0ae4fa785","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":723.74},"width":116.00198,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":713.42},"width":113.87799,"height":10.0905,"page":629}],"sectionNumber":6271,"textBefore":"the Mouse Syngenta ","textAfter":", 35415 GLP","comments":null,"startOffset":49,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618904Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fd0ee265cf03d00678f6649ef77986b1","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":89.343994},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6277,"textBefore":"Study in Rabbits ","textAfter":" CiToxLAB Hungary","comments":null,"startOffset":86,"endOffset":94,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618904Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"085cf525d63699e657b43412d8c34cd1","type":"CBI_author","value":"Penn L.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":650.78},"width":29.01699,"height":10.0905,"page":629}],"sectionNumber":6272,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a6b3680a21b5ea17bcbaaffde8e3e70","type":"CBI_address","value":"CiToxLAB Hungary Ltd, Szabadsagpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":183.06},"width":115.99301,"height":10.0905,"page":629},{"topLeft":{"x":181.94,"y":172.62},"width":113.80603,"height":10.0905,"page":629}],"sectionNumber":6276,"textBefore":"in Rabbits Syngenta ","textAfter":", 12/344-006N GLP","comments":null,"startOffset":97,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2f33ef68dd2748e5d3dac78fd5275a98","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":567.95},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6272,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":174,"endOffset":182,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"860c3db6c46008edcda95ffe9bfaa4be","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6273,"textBefore":"and Down Procedure) ","textAfter":" CiToxLAB Hungary","comments":null,"startOffset":109,"endOffset":117,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"826c1a8f1de9505d8c08f882eea23bce","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":297.45},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6275,"textBefore":"in the Rat ","textAfter":" CiToxLAB Hungary","comments":null,"startOffset":95,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"343bf956630fe7e606665ab928412dde","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":672.02},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6271,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":128,"endOffset":136,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a45d94541968a8a67057c54a19a6b652","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":734.06},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6271,"textBefore":"in the Mouse ","textAfter":" Charles River","comments":null,"startOffset":40,"endOffset":48,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ff2aa13d7f753afe4a1016acad39984c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":193.38},"width":34.47101,"height":10.0905,"page":629}],"sectionNumber":6276,"textBefore":"Study in Rabbits ","textAfter":" CiToxLAB Hungary","comments":null,"startOffset":88,"endOffset":96,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618905Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"047c883b1cb4b0d5f8efde649d06bd35","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":193.38},"width":116.00198,"height":10.0905,"page":630},{"topLeft":{"x":181.94,"y":183.06},"width":113.87799,"height":10.0905,"page":630}],"sectionNumber":6284,"textBefore":"in Rats Syngenta ","textAfter":", 33012 GLP","comments":null,"startOffset":145,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"07f2ad886130893bfb34adb1e3c95728","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":68.67999},"width":116.00198,"height":10.0905,"page":630},{"topLeft":{"x":181.94,"y":58.359985},"width":113.87799,"height":10.0905,"page":630}],"sectionNumber":6285,"textBefore":"in Mice Syngenta ","textAfter":",","comments":null,"startOffset":131,"endOffset":184,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9aab2d413ee053681b4fe275d8e5506c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":349.17},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6283,"textBefore":"Study in Mice ","textAfter":" Charles River","comments":null,"startOffset":93,"endOffset":101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"22f2a68ee174e7e656cd098679154c5c","type":"CBI_author","value":"Hargitai J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":712.94},"width":38.413002,"height":10.0905,"page":630}],"sectionNumber":6280,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b7e2ebd2509794db9384f637e6898863","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":484.19},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6282,"textBefore":"Study in Rat ","textAfter":" Charles River","comments":null,"startOffset":91,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6538ca68636ccb30efe28c22a24863c2","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":141.65997},"width":34.51001,"height":10.0905,"page":630}],"sectionNumber":6284,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":224,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f456af462b54649e25b3fc1b73ca2a8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":79.0},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6285,"textBefore":"Administration in Mice ","textAfter":" Charles River","comments":null,"startOffset":122,"endOffset":130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a543c753c8171e5570abcd0a147aeb2b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":203.70001},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6284,"textBefore":"Administration in Rats ","textAfter":" Charles River","comments":null,"startOffset":136,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618906Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f5e3e7860ebf0a0fcf236ebdc52b1fc","type":"CBI_address","value":"Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":567.47},"width":34.525024,"height":10.0905,"page":630}],"sectionNumber":6281,"textBefore":"Eurofins BioPharma, Planegg, ","textAfter":", 151200 GLP","comments":null,"startOffset":116,"endOffset":123,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c0be036517ba43f95f0f502e9dfe58b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6280,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":167,"endOffset":175,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c8bcf82a881471227146c58294b0687b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":287.01},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6283,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":185,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6f520da89af40667ffe2ea01f374ba8e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":422.15},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6282,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":183,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9072d4d1f6ba612dd280a4fa7465b0e3","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":588.26},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6281,"textBefore":"NRU Phototoxicity Test ","textAfter":" Eurofins BioPharma,","comments":null,"startOffset":78,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a40c65f9ea579a0a434745bb30a389e0","type":"CBI_author","value":"Shearer J., Robertson B.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":245.10004},"width":53.974007,"height":10.0905,"page":630},{"topLeft":{"x":82.704,"y":234.77997},"width":48.573997,"height":10.0905,"page":630}],"sectionNumber":6284,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3d52208cb2470c217be1a7139332f59f","type":"CBI_author","value":"Shearer J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":120.41998},"width":36.487,"height":10.0905,"page":630}],"sectionNumber":6285,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d98053723020e52a3b039d4138185139","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":536.39},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6281,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":150,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618907Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8610706d3123f5103dd507ccaccc17c9","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":692.18},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6280,"textBefore":"in the Mouse ","textAfter":" CiToxLAB Hungary","comments":null,"startOffset":80,"endOffset":88,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a3c0f8082bca8e1c73b8e63d8ddf84d0","type":"CBI_author","value":"Gehrke H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":608.9},"width":38.411995,"height":10.0905,"page":630}],"sectionNumber":6281,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"603dfb2914313a36982931dee2bc3ec7","type":"CBI_author","value":"Strepka C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":515.27},"width":38.979996,"height":10.0905,"page":630}],"sectionNumber":6282,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d635cb17a0d8bf9901d5dcf2909c02f1","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":338.85},"width":116.00198,"height":10.0905,"page":630},{"topLeft":{"x":181.94,"y":328.41},"width":113.87799,"height":10.0905,"page":630}],"sectionNumber":6283,"textBefore":"in Mice Syngenta ","textAfter":", 32153 Not","comments":null,"startOffset":102,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cfa8f8d1943ad74876a223ffff57f199","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":473.87},"width":116.00198,"height":10.0905,"page":630},{"topLeft":{"x":181.94,"y":463.55},"width":113.87799,"height":10.0905,"page":630}],"sectionNumber":6282,"textBefore":"in Rat Syngenta ","textAfter":", 32168 Not","comments":null,"startOffset":100,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3fd7b5a84f624d3ed7374a0dd2e7ce9e","type":"CBI_address","value":"Eurofins BioPharma","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":577.79},"width":77.42798,"height":10.0905,"page":630}],"sectionNumber":6281,"textBefore":"Phototoxicity Test Syngenta ","textAfter":", Planegg, Germany,","comments":null,"startOffset":87,"endOffset":105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"239b5d75b5cd0ebd0eb39a248a7fe496","type":"CBI_address","value":"CiToxLAB Hungary Ltd, Szabadsagpuszta, Hungary","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":681.86},"width":115.99301,"height":10.0905,"page":630},{"topLeft":{"x":181.94,"y":671.54},"width":113.80603,"height":10.0905,"page":630}],"sectionNumber":6280,"textBefore":"the Mouse Syngenta ","textAfter":", 12/344-037E GLP","comments":null,"startOffset":89,"endOffset":135,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"730f590af14f9e9277ec44b6a7ae61e4","type":"CBI_author","value":"Strepka C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":380.25},"width":38.979996,"height":10.0905,"page":630}],"sectionNumber":6283,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618908Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78bb0fdcf68b3a4260f72cd28cc9aebb","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":734.06},"width":34.47101,"height":10.0905,"page":630}],"sectionNumber":6279,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":18,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ace5d68c156e4955e6d817a0e39de47","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":463.55},"width":115.98401,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":453.11},"width":73.94499,"height":10.0905,"page":631}],"sectionNumber":6290,"textBefore":"Wistar Rat Syngenta ","textAfter":", D62072 GLP","comments":null,"startOffset":98,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9932262f23d2edf3c57b3f3808452675","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":286.52997},"width":43.43499,"height":10.0905,"page":631},{"topLeft":{"x":82.704,"y":276.21002},"width":9.610001,"height":10.0905,"page":631}],"sectionNumber":6292,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0a5013a9d278091fb06a14d44da8f7d2","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":141.18},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6293,"textBefore":"Lymphocytes In Vitro ","textAfter":" Harlan Cytotest","comments":null,"startOffset":105,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e2d4f08aab30b3b32f2b3280bf3fb259","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":400.89},"width":43.43499,"height":10.0905,"page":631},{"topLeft":{"x":82.704,"y":390.57},"width":9.610001,"height":10.0905,"page":631}],"sectionNumber":6291,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b5ced5a2bb030cb256ca2e3f629807b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":79.0},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6293,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":198,"endOffset":206,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5bc29b6066555d49245019e5dfd93efd","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6288,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":157,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac02c5517b51756cc332d91551bf1135","type":"CBI_author","value":"Bohnenberger S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":172.14001},"width":51.967003,"height":10.0905,"page":631},{"topLeft":{"x":82.704,"y":161.82},"width":8.290001,"height":10.0905,"page":631}],"sectionNumber":6293,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618909Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b20db88b84dd2ce066e0871d856fb83d","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":567.47},"width":115.83096,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":557.15},"width":61.830994,"height":10.0905,"page":631}],"sectionNumber":6289,"textBefore":"the Dog Syngenta ","textAfter":", BFI0114 GLP","comments":null,"startOffset":100,"endOffset":140,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3daafe7dcf5c4414279a916a52c61666","type":"CBI_author","value":"Blunt H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":608.9},"width":32.041,"height":10.0905,"page":631}],"sectionNumber":6289,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d5f908686e479434a3b2a958c995329","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":681.86},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6288,"textBefore":"in the Dog ","textAfter":" Sequani Limited,","comments":null,"startOffset":80,"endOffset":88,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"942397c92eaa6c724401f9945e961458","type":"CBI_author","value":"Blunt H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":702.62},"width":32.041,"height":10.0905,"page":631}],"sectionNumber":6288,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a5d2533cd38fafa28c74e94aee48d58","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":526.07},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6289,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":168,"endOffset":176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aef491cb7ce26a65a29a192653c54f90","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":671.54},"width":115.83096,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":661.22},"width":61.830994,"height":10.0905,"page":631}],"sectionNumber":6288,"textBefore":"the Dog Syngenta ","textAfter":", BFI0113 GLP","comments":null,"startOffset":89,"endOffset":129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"931ce242a84dc9eb98f8883f280ca551","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":473.87},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6290,"textBefore":"the Wistar Rat ","textAfter":" Harlan Laboratories","comments":null,"startOffset":89,"endOffset":97,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5102a0b81ac3e53866ebd3517f3c4ef6","type":"CBI_author","value":"Sieber M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":504.95},"width":36.577003,"height":10.0905,"page":631}],"sectionNumber":6290,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61891Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eae098cdb0587c1c1612f4eb64a62404","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":359.49},"width":115.91205,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":349.17},"width":116.010956,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":338.85},"width":34.525024,"height":10.0905,"page":631}],"sectionNumber":6291,"textBefore":"Mutation Assay Syngenta ","textAfter":", 1498901 GLP","comments":null,"startOffset":122,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618911Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5d89b57a3d3d7cf109a9ded93e22601e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":723.74},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6287,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":24,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618911Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f07d3855df48072792d2da6fe3ac85e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":193.38},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6292,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":206,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618911Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2f317fda8f5e523e66f3bc5eb64315b8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":307.76996},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6291,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":206,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618911Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e633a89b5c6cdb4aa4b5420edf400dd","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":577.79},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6289,"textBefore":"in the Dog ","textAfter":" Sequani Limited,","comments":null,"startOffset":91,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618911Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf8173ca50d2c1affedf1b5710eb039d","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":245.10004},"width":115.85806,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":234.77997},"width":116.010956,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":224.46002},"width":34.525024,"height":10.0905,"page":631}],"sectionNumber":6292,"textBefore":"Mutation Assay Syngenta ","textAfter":", 1648701 GLP","comments":null,"startOffset":122,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618911Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7865b34503d9c09c16a7a0d0d37bca2f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":422.15},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6290,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":171,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cd3170dce2258cd53f873cf22d65178a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":369.81},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6291,"textBefore":"Reverse Mutation Assay ","textAfter":" Harlan Cytotest","comments":null,"startOffset":113,"endOffset":121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d1b165c0256568b0708c15012947e287","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":130.73999},"width":115.85806,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":120.41998},"width":116.010956,"height":10.0905,"page":631},{"topLeft":{"x":181.94,"y":110.099976},"width":34.525024,"height":10.0905,"page":631}],"sectionNumber":6293,"textBefore":"In Vitro Syngenta ","textAfter":", 1498902 GLP","comments":null,"startOffset":114,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b3a97b89fe06dc3812afa0e11b96543","type":"CBI_author","value":"Wollny H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":57.76001},"width":38.872,"height":10.0905,"page":631}],"sectionNumber":6294,"textBefore":null,"textAfter":null,"comments":null,"startOffset":4,"endOffset":13,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0acb024c14e347c4204eaaa78a97e48b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":255.45001},"width":34.47101,"height":10.0905,"page":631}],"sectionNumber":6292,"textBefore":"Reverse Mutation Assay ","textAfter":" Harlan Cytotest","comments":null,"startOffset":113,"endOffset":121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"98292acb5701d38bdad05265a337e77d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":495.11},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6298,"textBefore":"of the Mouse ","textAfter":" Harlan Cytotest","comments":null,"startOffset":93,"endOffset":101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a880cfa00baf31c496854c5e21edf4e1","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":609.38},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6297,"textBefore":"of the Mouse ","textAfter":" Harlan Cytotest","comments":null,"startOffset":93,"endOffset":101,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"33936a84c35c80975de69028464ef03e","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":349.65},"width":116.00198,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":339.33},"width":113.87799,"height":10.0905,"page":632}],"sectionNumber":6299,"textBefore":"1 (2016) Syngenta ","textAfter":", 36248 GLP","comments":null,"startOffset":156,"endOffset":209,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618912Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"58df06166918137dfc5471f6d9182a07","type":"CBI_author","value":"Cowie D.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":151.97998},"width":35.406998,"height":10.0905,"page":632}],"sectionNumber":6301,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d37dde1b19187ae3d5e85dbebaaefe0f","type":"CBI_author","value":"Robertson B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":276.69},"width":48.573997,"height":10.0905,"page":632}],"sectionNumber":6300,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4227cdcb4ae327f1a3f4bda269b2358","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.08304,"y":515.75},"width":30.033966,"height":10.0905,"page":632}],"sectionNumber":6298,"textBefore":"Assay in Bone ","textAfter":" Cells of","comments":null,"startOffset":67,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2647fe8253395e7f1d22541ea8b46e59","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.08304,"y":630.14},"width":30.033966,"height":10.0905,"page":632}],"sectionNumber":6297,"textBefore":"Assay in Bone ","textAfter":" Cells of","comments":null,"startOffset":67,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7b5ac65ecd101e33415326702b87e045","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":359.97},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6299,"textBefore":"Amendment 1 (2016) ","textAfter":" Charles River","comments":null,"startOffset":147,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8593e83e3d178b87f8895d568a6cf284","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":224.94},"width":116.00198,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":214.62},"width":113.87799,"height":10.0905,"page":632}],"sectionNumber":6300,"textBefore":"2 (2016) Syngenta ","textAfter":", 35914 GLP","comments":null,"startOffset":139,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"daf173674303e092acd2e5b9d2771ceb","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":713.42},"width":115.85806,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":703.1},"width":116.010956,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":692.66},"width":34.525024,"height":10.0905,"page":632}],"sectionNumber":6296,"textBefore":"L5178Y Cells Syngenta ","textAfter":", 1498903 GLP","comments":null,"startOffset":96,"endOffset":152,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618913Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c53434cc78f8198958f134191eca07c8","type":"CBI_author","value":"Robertson B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":411.69},"width":48.573997,"height":10.0905,"page":632}],"sectionNumber":6299,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7781b631555a9bf8b736c5b1a2b8cbb2","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":297.93},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6299,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":235,"endOffset":243,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"58d32cccecb3d94dc74ac002622d4a5f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":661.7},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6296,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":180,"endOffset":188,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6216b7ca4e43e038d77469ef06123c77","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":547.31},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6297,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":186,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5eca704cb83c94e78afe52c44535ab1b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":235.26001},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6300,"textBefore":"Amendment 2 (2016) ","textAfter":" Charles River","comments":null,"startOffset":130,"endOffset":138,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cda1a6db6bbc97aadc4280f6c7b20950","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":173.22003},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6300,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":218,"endOffset":226,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a9769f0a23b489eb718613e5bc90c57","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":599.06},"width":115.85806,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":588.74},"width":116.010956,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":578.39},"width":34.525024,"height":10.0905,"page":632}],"sectionNumber":6297,"textBefore":"the Mouse Syngenta ","textAfter":", 1498904 GLP","comments":null,"startOffset":102,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"14fe31e8cf30e647bb6447f2ba1cae6e","type":"CBI_address","value":"Syngenta Syngenta - Jealott’s Hill, Bracknell, United Kingdom,","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":110.58002},"width":34.47101,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":100.26001},"width":116.170105,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":89.94403},"width":116.047,"height":10.0905,"page":632}],"sectionNumber":6301,"textBefore":"in CD-1 Mice ","textAfter":" TK0258437 Not","comments":null,"startOffset":115,"endOffset":177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618914Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1260e8b68309451e85b60a8407ba0b5a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":723.74},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6296,"textBefore":"Lymphoma L5178Y Cells ","textAfter":" Harlan Cytotest","comments":null,"startOffset":87,"endOffset":95,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c03462bf7c66407614dfb2a9207cb51","type":"CBI_author","value":"Dony E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":526.07},"width":30.925003,"height":10.0905,"page":632}],"sectionNumber":6298,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"450ace39e2353e5d4e25e970db25c300","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":432.95},"width":34.47101,"height":10.0905,"page":632}],"sectionNumber":6298,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":186,"endOffset":194,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6377463877ecc183589191fcc2258b67","type":"CBI_author","value":"Roth M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":640.46},"width":31.071999,"height":10.0905,"page":632}],"sectionNumber":6297,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"11d8715f8f290b036d1bb488ae94bec5","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":484.67},"width":115.85806,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":474.35},"width":116.010956,"height":10.0905,"page":632},{"topLeft":{"x":181.94,"y":464.03},"width":34.525024,"height":10.0905,"page":632}],"sectionNumber":6298,"textBefore":"the Mouse Syngenta ","textAfter":", 1648702 GLP","comments":null,"startOffset":102,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aba937f57f56a456cef42d1b19775c97","type":"CBI_author","value":"Elcombe B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":712.94},"width":43.416992,"height":10.0905,"page":633}],"sectionNumber":6304,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"970fa45ccf6b3493564e3f18b3913f1d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":391.05},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6306,"textBefore":"Human Hepatocyte Cultures ","textAfter":" CXR Biosciences,","comments":null,"startOffset":147,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"06ad32d8ecd42b83c0425c0e5ce6ac53","type":"CBI_author","value":"Lowes D.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":588.26},"width":35.893005,"height":10.0905,"page":633}],"sectionNumber":6305,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618915Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e3a3ab74d559c0eba5a14e9317b9d00e","type":"CBI_address","value":"CXR Biosciences, Dundee, Scotland, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":671.54},"width":116.073975,"height":10.0905,"page":633},{"topLeft":{"x":181.94,"y":661.22},"width":50.059006,"height":10.0905,"page":633}],"sectionNumber":6304,"textBefore":"CD-1 Mice Syngenta ","textAfter":", CXR1508 Not","comments":null,"startOffset":112,"endOffset":149,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c5c71e75f2ce79d469af37658aa0f16f","type":"CBI_author","value":"Lowes D.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":442.79},"width":35.893005,"height":10.0905,"page":633}],"sectionNumber":6306,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"39c658b368f0d5810f731022a6edaa8a","type":"CBI_address","value":"CXR Biosciences, Dundee, Scotland, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":380.73},"width":115.99301,"height":10.0905,"page":633},{"topLeft":{"x":181.94,"y":370.29},"width":50.059006,"height":10.0905,"page":633}],"sectionNumber":6306,"textBefore":"Hepatocyte Cultures Syngenta ","textAfter":", CXR1504 Not","comments":null,"startOffset":156,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f72127bb502e4f104dac85695252a90","type":"CBI_address","value":"CXR Biosciences, Dundee, Scotland, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":100.26001},"width":115.99301,"height":10.0905,"page":633},{"topLeft":{"x":181.94,"y":89.94403},"width":50.059006,"height":10.0905,"page":633}],"sectionNumber":6308,"textBefore":"the Mouse Syngenta ","textAfter":", CXR1117 Not","comments":null,"startOffset":165,"endOffset":202,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6932927dcbf097e39fd5988d36dd83a0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":110.58002},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6308,"textBefore":"in the Mouse ","textAfter":" CXR Biosciences,","comments":null,"startOffset":156,"endOffset":164,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d899a7e8007a76cd01fd9ad2de9a3042","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":58.840027},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6308,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":234,"endOffset":242,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"22800f1fa5fb64fc9036a9b453329063","type":"CBI_address","value":"CXR Biosciences, Dundee, Scotland, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":526.07},"width":115.99301,"height":10.0905,"page":633},{"topLeft":{"x":181.94,"y":515.75},"width":50.059006,"height":10.0905,"page":633}],"sectionNumber":6305,"textBefore":"Hepatocyte Cultures Syngenta ","textAfter":", CXR1503 Not","comments":null,"startOffset":160,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a7cbc21389c5df791a14be77d51913ae","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":536.39},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6305,"textBefore":"Mouse Hepatocyte Cultures ","textAfter":" CXR Biosciences,","comments":null,"startOffset":151,"endOffset":159,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618916Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1f73f2c632c0a3f37413505936d379e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":339.33},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6306,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":225,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c499a6affcc0fdca5c2356043206f045","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":681.86},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6304,"textBefore":"Male CD-1 Mice ","textAfter":" CXR Biosciences,","comments":null,"startOffset":103,"endOffset":111,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25692f9db0f22a153f627b8a37660b23","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":204.18},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6307,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":201,"endOffset":209,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"56b27aaa25b741d0fff5424dc7c94b9b","type":"CBI_address","value":"Dept of Vet & Biomedical Sciences, University Pk, PA, USA","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":256.05},"width":115.867035,"height":10.0905,"page":633},{"topLeft":{"x":181.94,"y":245.58002},"width":115.93909,"height":10.0905,"page":633},{"topLeft":{"x":181.94,"y":235.26001},"width":19.0,"height":10.0905,"page":633}],"sectionNumber":6307,"textBefore":"Human CAR Syngenta ","textAfter":", TK0219831 Not","comments":null,"startOffset":110,"endOffset":167,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d80b934ed02f99b28254953114b96dc","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6304,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":181,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e67507148481f029e0a8a5116906c761","type":"CBI_author","value":"Haines C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":162.29999},"width":36.477997,"height":10.0905,"page":633}],"sectionNumber":6308,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4eb47d374c5c468d43b28ce086f830e8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":754.82},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6303,"textBefore":null,"textAfter":" File No","comments":null,"startOffset":0,"endOffset":8,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618917Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4bab27fa0a19d3d5a0e237a34e07f78d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":266.37},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6307,"textBefore":"and Human CAR ","textAfter":" Dept of","comments":null,"startOffset":101,"endOffset":109,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47831e7c51ff9b4e45beaa0f00f4cafc","type":"CBI_author","value":"Omiecinski C.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":297.45},"width":52.917,"height":10.0905,"page":633}],"sectionNumber":6307,"textBefore":null,"textAfter":null,"comments":null,"startOffset":13,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3f813a0c5745b1164697439d28dc55f2","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":484.67},"width":34.47101,"height":10.0905,"page":633}],"sectionNumber":6305,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":229,"endOffset":237,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a9e6bd7151c5143fbba75a48c4b247d","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":557.15},"width":115.83096,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":546.83},"width":61.830994,"height":10.0905,"page":634}],"sectionNumber":6312,"textBefore":"the Rat Syngenta ","textAfter":", BFI0031 Not","comments":null,"startOffset":157,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1620bfbd81255e2403e159a53c457945","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":640.46},"width":34.516006,"height":10.0905,"page":634}],"sectionNumber":6311,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":190,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"205e37e616d303bdbc23c84f65c3b6e1","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":692.18},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6311,"textBefore":"in the Rat ","textAfter":" Sequani Limited,","comments":null,"startOffset":113,"endOffset":121,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c0950449fe519b3f055a7f9e6691e5c4","type":"CBI_author","value":"Barnes E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":130.73999},"width":35.991997,"height":10.0905,"page":634}],"sectionNumber":6316,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2df6f439031b6e01c606912ceedab5aa","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":567.47},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6312,"textBefore":"in the Rat ","textAfter":" Sequani Limited,","comments":null,"startOffset":148,"endOffset":156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618918Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f2b447ea955485f1a9da5e07ca94761","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6312,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":229,"endOffset":237,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a32efd1dea0bc28e3e1bef08b8c8d2c","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":681.86},"width":115.83096,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":671.54},"width":61.830994,"height":10.0905,"page":634}],"sectionNumber":6311,"textBefore":"the Rat Syngenta ","textAfter":", BFI0171 GLP","comments":null,"startOffset":122,"endOffset":162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7d82610b708e26d8e94775ac2f716d53","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":276.69},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6314,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":200,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6aceefd4723219e014511add02cc79a2","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":193.38},"width":115.83096,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":183.06},"width":61.830994,"height":10.0905,"page":634}],"sectionNumber":6315,"textBefore":"the Rabbit Syngenta ","textAfter":", BFI0116 GLP","comments":null,"startOffset":116,"endOffset":156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7624026e5949c49ebc5af96e39de6de","type":"CBI_author","value":"Penn L.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":369.81},"width":29.01699,"height":10.0905,"page":634}],"sectionNumber":6314,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e92f91c3c4b4e63e24b4a7e42b93ba7","type":"CBI_author","value":"Davies S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":473.87},"width":35.388992,"height":10.0905,"page":634}],"sectionNumber":6313,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c541e828aac6d89c2271d202b9878cf2","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":432.47},"width":115.83096,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":422.15},"width":61.830994,"height":10.0905,"page":634}],"sectionNumber":6313,"textBefore":"the Rat Syngenta ","textAfter":", BFI0118 GLP","comments":null,"startOffset":114,"endOffset":154,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dc80cca7cde6099aec787dbb0aabe8ae","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":328.41},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6314,"textBefore":"in the Rabbit ","textAfter":" Sequani Limited,","comments":null,"startOffset":119,"endOffset":127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618919Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"05806aaa8d8a3ea44ae0e20b4983fed5","type":"CBI_address","value":"Syngenta Syngenta - Jealott’s Hill, Bracknell, United Kingdom,","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":89.343994},"width":34.47101,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":79.0},"width":116.170105,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":68.67999},"width":115.99298,"height":10.0905,"page":634}],"sectionNumber":6316,"textBefore":"Studies in Rats ","textAfter":" TK0103655","comments":null,"startOffset":127,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3e61e545134a681800f5c188b5746959","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":391.05},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6313,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":182,"endOffset":190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2adfca331da32ac005639a7e46692a54","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":151.97998},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6315,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":184,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"632107a75f32b475e28a5542718af84b","type":"CBI_address","value":"Sequani Limited, Ledbury, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":318.09003},"width":115.83096,"height":10.0905,"page":634},{"topLeft":{"x":181.94,"y":307.76996},"width":61.830994,"height":10.0905,"page":634}],"sectionNumber":6314,"textBefore":"the Rabbit Syngenta ","textAfter":", BFI0046 Not","comments":null,"startOffset":128,"endOffset":168,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47e1388bb27a020d4a761335b45dd6f4","type":"CBI_author","value":"Penn L.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":234.77997},"width":29.01699,"height":10.0905,"page":634}],"sectionNumber":6315,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4891189971067f8472a7732602d2252","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":203.70001},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6315,"textBefore":"in the Rabbit ","textAfter":" Sequani Limited,","comments":null,"startOffset":107,"endOffset":115,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"926882d3f13f82301adf9db546d1cd39","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":442.79},"width":34.47101,"height":10.0905,"page":634}],"sectionNumber":6313,"textBefore":"in the Rat ","textAfter":" Sequani Limited,","comments":null,"startOffset":105,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7b681d30fa37b5d14d6af2b044a0e93","type":"CBI_author","value":"Manton J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":619.22},"width":37.072,"height":10.0905,"page":634}],"sectionNumber":6312,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61892Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc774862c8c03eda7f30aff99242dc40","type":"CBI_author","value":"Hackford S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":723.26},"width":44.488007,"height":10.0905,"page":634}],"sectionNumber":6311,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4caa9602df4c78b831e44d20b083eaee","type":"CBI_author","value":"Pooles A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":473.87},"width":35.982994,"height":10.0905,"page":635}],"sectionNumber":6321,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"11afed96e33cf0e3cbacc1f39f9f3afc","type":"CBI_author","value":"Broich K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":588.26},"width":36.604004,"height":10.0905,"page":635}],"sectionNumber":6320,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2f91349cd06cac220f12f4c48afcc8d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":370.29},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6321,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":237,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1adb8aeef60e1d0a121e5080b5cd146e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":110.58002},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6323,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":237,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92dfc9fc65fbf0726b157cffbfc0bfe8","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":349.17},"width":43.43499,"height":10.0905,"page":635},{"topLeft":{"x":82.704,"y":338.85},"width":9.610001,"height":10.0905,"page":635}],"sectionNumber":6322,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9cde307c8ac675b9a68de9ab2d529c4","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":203.70001},"width":23.391968,"height":10.0905,"page":635}],"sectionNumber":6323,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":376,"endOffset":380,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fe5daaa7859e0d7f4bc4c435c3ab3980","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":609.38},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6319,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":182,"endOffset":190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618921Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b87cc043521c8e696ea2f3ef3c085be","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":495.11},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6320,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":205,"endOffset":213,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a41205c1d32d7925d0e9bdbba4086f7d","type":"CBI_address","value":"Syngenta Crop Protection AG, Basel, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":442.79},"width":115.82202,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":432.47},"width":68.33801,"height":10.0905,"page":635}],"sectionNumber":6321,"textBefore":"Amendment 1, 2011 ","textAfter":" Safepharm Laboratories","comments":null,"startOffset":97,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a78e45a333576d7c3e665e76671c1fee","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":650.78},"width":116.03201,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":640.46},"width":73.94499,"height":10.0905,"page":635}],"sectionNumber":6319,"textBefore":"Wistar Rat Syngenta ","textAfter":", D84504 GLP","comments":null,"startOffset":109,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f7b3b54397b00d5d8de852d63872d225","type":"CBI_address","value":"Syngenta Crop Protection AG, Basel, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":307.76996},"width":115.82202,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":297.45},"width":68.33801,"height":10.0905,"page":635}],"sectionNumber":6322,"textBefore":"reverse mutation assay ","textAfter":" RCC Cytotest","comments":null,"startOffset":127,"endOffset":174,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"559ca891ca483f831289c4f359eb1fc8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":235.26001},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6322,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":257,"endOffset":265,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1acb744b2ee881aa7cb58d96fc945c32","type":"CBI_address","value":"RCC","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":266.37},"width":19.009018,"height":10.0905,"page":635}],"sectionNumber":6322,"textBefore":"GmbH, Rossdorf, Germany, ","textAfter":" 1077403 GLP","comments":null,"startOffset":227,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78d10272c3b4e077ee3d890bbc5dcebd","type":"CBI_address","value":"RCC Cytotest Cell Research GmbH, Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":162.29999},"width":115.867065,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":151.97998},"width":113.88098,"height":10.0905,"page":635}],"sectionNumber":6323,"textBefore":"Bracknell, United Kingdom ","textAfter":", 1266902 GLP","comments":null,"startOffset":159,"endOffset":209,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7ace025d1a780693ea35e94fc3e3290","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":79.0},"width":23.391968,"height":10.0905,"page":635}],"sectionNumber":6324,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":192,"endOffset":196,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618922Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"68b5f952fc281faa70ad76bc0974c591","type":"CBI_author","value":"Broich K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":692.18},"width":36.604004,"height":10.0905,"page":635}],"sectionNumber":6319,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64a074563f78c135d6d48944a2206956","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":536.39},"width":115.98401,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":526.07},"width":73.94499,"height":10.0905,"page":635}],"sectionNumber":6320,"textBefore":"Wistar Rat Syngenta ","textAfter":", D97813 GLP","comments":null,"startOffset":132,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c688045033dfb0753c9296aca0a07bd","type":"CBI_address","value":"Syngenta - Jealott’s Hill, Bracknell, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":183.06},"width":116.170105,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":172.62},"width":101.26901,"height":10.0905,"page":635}],"sectionNumber":6323,"textBefore":"Lymphocytes In Vitro ","textAfter":" RCC Cytotest","comments":null,"startOffset":106,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"530031e4d321026cb26cd408a0f1893f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":734.06},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6318,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":22,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"772f0bf7a8a9c7890b837ef95bf8f0b9","type":"CBI_address","value":"Safepharm Laboratories Ltd., Shadlow, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":422.15},"width":116.08298,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":411.69},"width":113.87799,"height":10.0905,"page":635}],"sectionNumber":6321,"textBefore":"AG, Basel, Switzerland ","textAfter":", Safepharm 2364/0169","comments":null,"startOffset":145,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64ecea90e9353cc81d98fe7a6b27eb57","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":546.83},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6320,"textBefore":"Female Wistar Rat ","textAfter":" Harlan Laboratories","comments":null,"startOffset":123,"endOffset":131,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"86ab73c31e5272d927f2d9402de8cef1","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":661.22},"width":34.47101,"height":10.0905,"page":635}],"sectionNumber":6319,"textBefore":"the Wistar Rat ","textAfter":" Harlan Laboratories","comments":null,"startOffset":100,"endOffset":108,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cab08899f5db25fab4862904926d53b7","type":"CBI_address","value":"Safepharm","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":401.37},"width":40.015,"height":10.0905,"page":635}],"sectionNumber":6321,"textBefore":"Shadlow, United Kingdom, ","textAfter":" 2364/0169 GLP","comments":null,"startOffset":199,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618923Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f6bfb03310b8b59afed08036eb16deb","type":"CBI_address","value":"RCC Cytotest Cell Research GmbH, Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":287.01},"width":115.867065,"height":10.0905,"page":635},{"topLeft":{"x":181.94,"y":276.69},"width":113.77899,"height":10.0905,"page":635}],"sectionNumber":6322,"textBefore":"AG, Basel, Switzerland ","textAfter":", RCC 1077403","comments":null,"startOffset":175,"endOffset":225,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"379a15ca8c4df04f08267f8102deb768","type":"CBI_author","value":"Wollny H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":89.343994},"width":38.872,"height":10.0905,"page":635}],"sectionNumber":6324,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24ed61171ff23849bc9dae322f5b9982","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":463.55},"width":23.391968,"height":10.0905,"page":635}],"sectionNumber":6321,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":372,"endOffset":376,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bf0c896ac3f3b13949e1380ed7ab83c","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":338.85},"width":23.391968,"height":10.0905,"page":635}],"sectionNumber":6322,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":395,"endOffset":399,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"af77c257fe34c44b580b46221143a58c","type":"CBI_author","value":"Bohnenberger S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":214.02002},"width":51.967003,"height":10.0905,"page":635},{"topLeft":{"x":82.704,"y":203.70001},"width":8.290001,"height":10.0905,"page":635}],"sectionNumber":6323,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dd9d60d8534058f44a86b176719cae89","type":"CBI_address","value":"BASF SE, Limburgerhof, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":505.43},"width":115.85794,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":495.11},"width":34.525024,"height":10.0905,"page":636}],"sectionNumber":6328,"textBefore":"diet Syngenta, BASF ","textAfter":", 2009/1072503 GLP","comments":null,"startOffset":180,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64fd659dd88d13bc7b9ae91df0448c38","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":380.73},"width":23.391998,"height":10.0905,"page":636}],"sectionNumber":6329,"textBefore":"AG, Basel, Switzerland ","textAfter":", 2009/1072507 GLP","comments":null,"startOffset":215,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d374834245bb0338a2c22ba6c1afe672","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":349.65},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6329,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":252,"endOffset":260,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618924Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3388cb6d7f36c3b91a48689adc268657","type":"CBI_address","value":"RCC Cytotest Cell Research GmbH, Rossdorf, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":734.06},"width":115.867065,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":723.74},"width":113.77899,"height":10.0905,"page":636}],"sectionNumber":6326,"textBefore":"Bracknell, United Kingdom ","textAfter":", 1266901 GLP","comments":null,"startOffset":53,"endOffset":103,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b6d0d337dce2fd52975dab7a6a1a41e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":58.359985},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6332,"textBefore":"in Human Lymphocytes ","textAfter":null,"comments":null,"startOffset":106,"endOffset":114,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d213f55c7364aab44ddaf3707136673f","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":432.47},"width":23.391968,"height":10.0905,"page":636}],"sectionNumber":6329,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":391,"endOffset":395,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce93db7bb304cb77d087ce320570a84b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":464.03},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6328,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":243,"endOffset":251,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cac0c6f408db20e599d11e3957e96c16","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":162.29999},"width":115.85806,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":151.97998},"width":116.010956,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":141.65997},"width":34.525024,"height":10.0905,"page":636}],"sectionNumber":6331,"textBefore":"Mutation Assay Syngenta ","textAfter":", 1555901 GLP","comments":null,"startOffset":123,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b133070c5d903c3f31c257e4dc4ea72d","type":"CBI_address","value":"BASF Ltd., Ludwigshafen, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":297.45},"width":115.938965,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":287.01},"width":34.525024,"height":10.0905,"page":636}],"sectionNumber":6330,"textBefore":"study in rats ","textAfter":" Bioassay -","comments":null,"startOffset":105,"endOffset":137,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a446c11344d7889c6a34080a43b0335f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":567.95},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6327,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":224,"endOffset":232,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f19b6ddbe5b556ebe2e25cede3ec9aba","type":"CBI_author","value":"Sokolowski A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":203.70001},"width":43.43499,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":193.38},"width":9.610001,"height":10.0905,"page":636}],"sectionNumber":6331,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618925Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5e3379c1c8eb00663c3a6e158689dea0","type":"CBI_author","value":"Cords S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":328.41},"width":32.031998,"height":10.0905,"page":636}],"sectionNumber":6330,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df6e561e5b0432c2925115c3fcedee53","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":110.58002},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6331,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":207,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3d471ff13f13fc4e5f69be2ca56a487","type":"CBI_author","value":"Bohnenberger S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":89.343994},"width":51.967003,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":79.0},"width":8.290001,"height":10.0905,"page":636}],"sectionNumber":6332,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"453e701aa4b9af71d434c962c78c0430","type":"CBI_author","value":"Kaspers U. Strauss V. Graters S. Fabian E. van Ravenzwaay B.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":546.83},"width":53.883995,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":536.39},"width":54.090996,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":526.07},"width":53.982994,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":515.75},"width":53.937996,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":505.43},"width":46.98301,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":495.11},"width":9.25,"height":10.0905,"page":636}],"sectionNumber":6328,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":75,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8b21f8597af30435b29ccccdb34b2e72","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":650.78},"width":23.391968,"height":10.0905,"page":636}],"sectionNumber":6327,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":363,"endOffset":367,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5844a584255b3d9114fe462df972f5cc","type":"CBI_author","value":"Schneider S., Fabian E., Mellert W.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":442.79},"width":54.073006,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":432.47},"width":54.090996,"height":10.0905,"page":636},{"topLeft":{"x":82.704,"y":422.15},"width":40.42,"height":10.0905,"page":636}],"sectionNumber":6329,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":50,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aaafb6c782e7c4d00bd10b625150d83e","type":"CBI_address","value":"Harlan Laboratories Ltd., Itingen, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":609.38},"width":115.98401,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":599.06},"width":73.99301,"height":10.0905,"page":636}],"sectionNumber":6327,"textBefore":"Bracknell, United Kingdom ","textAfter":", C57852 GLP","comments":null,"startOffset":151,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ad027cdb3a7e52d48f0adb8af2ed8f0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":682.34},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6326,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":131,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618926Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d0035a38b243ba4e421be8c961545dc3","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":172.62},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6331,"textBefore":"Reverse Mutation Assay ","textAfter":" Harlan Cytotest","comments":null,"startOffset":114,"endOffset":122,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c7f59d4b69549a6e9f93bde097f1385","type":"CBI_author","value":"Sommer E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":661.22},"width":41.364998,"height":10.0905,"page":636}],"sectionNumber":6327,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f92b94d03f95a242b596b52dde8fdf41","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":219.947,"y":515.75},"width":23.391998,"height":10.0905,"page":636}],"sectionNumber":6328,"textBefore":"the diet Syngenta, ","textAfter":" BASF SE,","comments":null,"startOffset":175,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80348fd324409a3acd79020ebb875c67","type":"CBI_address","value":"Syngenta - Jealott’s Hill, Bracknell, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":116.170105,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":619.82},"width":101.26901,"height":10.0905,"page":636}],"sectionNumber":6327,"textBefore":"the Wistar Rat ","textAfter":" Harlan Laboratories","comments":null,"startOffset":98,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"336d24f2ba9ce998d6d53da8d8572340","type":"CBI_address","value":"Syngenta Crop Protection AG, Basel, Switzerland","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":401.37},"width":115.96295,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":391.05},"width":68.33801,"height":10.0905,"page":636}],"sectionNumber":6329,"textBefore":"Oral administration (gavage) ","textAfter":" BASF, 2009/1072507","comments":null,"startOffset":167,"endOffset":214,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d13616b8f1fd7e456a72d048682b17d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":224.94},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6330,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":230,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9c8f7661bb8f7db1c2afd2286e1673c","type":"CBI_address","value":"Bioassay - Biologische Analytik GmbH, Heidelberg, Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":276.69},"width":116.12201,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":266.37},"width":115.87607,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":256.05},"width":34.525024,"height":10.0905,"page":636}],"sectionNumber":6330,"textBefore":"Ltd., Ludwigshafen, Germany ","textAfter":", 10A0432/099058 GLP","comments":null,"startOffset":138,"endOffset":195,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618927Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8be16aa193560d624a4ae4f62b311110","type":"CBI_address","value":"BASF","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":463.78,"y":536.39},"width":23.391968,"height":10.0905,"page":636}],"sectionNumber":6328,"textBefore":"SYN/ ","textAfter":null,"comments":null,"startOffset":380,"endOffset":384,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9f44b130e1e4da92db8c00669237eec","type":"CBI_address","value":"Syngenta - Jealott’s Hill, Bracknell, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":754.82},"width":116.170105,"height":10.0905,"page":636},{"topLeft":{"x":181.94,"y":744.5},"width":101.26901,"height":10.0905,"page":636}],"sectionNumber":6326,"textBefore":null,"textAfter":" RCC Cytotest","comments":null,"startOffset":0,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"219f05b82b24580719be0e3ccfb83bef","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":34.47101,"height":10.0905,"page":636}],"sectionNumber":6328,"textBefore":"in the diet ","textAfter":", BASF BASF","comments":null,"startOffset":165,"endOffset":173,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7b5d9286705429965a3a402223552e21","type":"CBI_author","value":"Marrow","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.08304,"y":546.83},"width":30.033966,"height":10.0905,"page":637}],"sectionNumber":6336,"textBefore":"Assay in Bone ","textAfter":" Cells of","comments":null,"startOffset":68,"endOffset":74,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"480aa0b97533cc38e92e82d1ca328f48","type":"CBI_author","value":"Wollny H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":681.86},"width":38.88999,"height":10.0905,"page":637}],"sectionNumber":6335,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e59ee838368d2a5aa5cac3e95934c13","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":99.77997},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6340,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":213,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"62de3a8de330d1cd8846549b3c62480a","type":"published_information","value":"Chemosphere","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":307.76996},"width":50.43701,"height":10.0905,"page":637}],"sectionNumber":6338,"textBefore":null,"textAfter":null,"comments":null,"startOffset":91,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"674438ef134cc45f1c202e8de60bbc5d","type":"CBI_author","value":"Dony E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":557.15},"width":30.925003,"height":10.0905,"page":637}],"sectionNumber":6336,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618928Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0165f069d18ed32e273f1616a0a468c6","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":193.38},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6339,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":148,"endOffset":156,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["c69635ea08e80c6149bf48f769d550a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb707c45e01bc1cf9d542a6dc9231779","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":703.1},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6334,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":84,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"35c6666372b6ff0823dc9971943c199d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":578.39},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6335,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":225,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bac4854ce28d934266ecee68052a0268","type":"CBI_author","value":"Sprague","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":68.20001},"width":30.528992,"height":10.0905,"page":637}],"sectionNumber":6341,"textBefore":"of 2,4,6-Trichlorophenol in ","textAfter":"-Dawley Rats Journal","comments":null,"startOffset":85,"endOffset":92,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["d6d3864f908ee0a7e5d4a47371d83143"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"94fd77e1741bd9fa46a59bd3bc6c7944","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":754.82},"width":115.85806,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":744.5},"width":116.010956,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":734.06},"width":34.525024,"height":10.0905,"page":637}],"sectionNumber":6334,"textBefore":null,"textAfter":", 1555902 GLP","comments":null,"startOffset":0,"endOffset":56,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"74ad9c461420c76ffb47a3165322ff4c","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":115.85806,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":619.82},"width":116.010956,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":609.38},"width":34.525024,"height":10.0905,"page":637}],"sectionNumber":6335,"textBefore":"L5178Y Cells Syngenta ","textAfter":", 1555903 GLP","comments":null,"startOffset":141,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f6c93bfef685a3219100c1d4a2c417e","type":"CBI_address","value":"Charles River Laboratories, Edinburgh, United Kingdom","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":411.69},"width":116.00198,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":401.37},"width":113.87799,"height":10.0905,"page":637}],"sectionNumber":6337,"textBefore":"in Rats Syngenta ","textAfter":", 35015 GLP","comments":null,"startOffset":96,"endOffset":149,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"56d1a396007cd01e6a72987bbd1f7beb","type":"CBI_author","value":"Bercz J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":88.86401},"width":29.898994,"height":10.0905,"page":637}],"sectionNumber":6341,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618929Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["d6d3864f908ee0a7e5d4a47371d83143"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"39d15041d016fbd6e21cc1df93386f3f","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":464.03},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6336,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":185,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dd21df6d0c4ec2f4e728a69690698d86","type":"PII","value":"323-327","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.21902,"y":307.76996},"width":31.041962,"height":10.0905,"page":637}],"sectionNumber":6338,"textBefore":"rats Chemosphere 10:","textAfter":", Not GLP","comments":null,"startOffset":106,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787333Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"51c9b761e3d307039739cd5d4c53aa3e","type":"CBI_address","value":"Harlan Cytotest Cell Research GmbH (Harlan CCR), Germany","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":115.85806,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":505.43},"width":116.010956,"height":10.0905,"page":637},{"topLeft":{"x":181.94,"y":495.11},"width":34.525024,"height":10.0905,"page":637}],"sectionNumber":6336,"textBefore":"the Rat Syngenta ","textAfter":", 1602600 GLP","comments":null,"startOffset":101,"endOffset":157,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a96f22d55621a0e868b1c40515cd5c3","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":640.46},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6335,"textBefore":"Lymphoma L5178Y Cells ","textAfter":" Harlan Cytotest","comments":null,"startOffset":132,"endOffset":140,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"083aa2d7442e67c92a52e12d062b9e42","type":"CBI_author","value":"Bahig M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":338.85},"width":35.019997,"height":10.0905,"page":637}],"sectionNumber":6338,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["62de3a8de330d1cd8846549b3c62480a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"17fd52620dd85fdc910c26e4d49ca5b0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":422.15},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6337,"textBefore":"Study in Rats ","textAfter":" Charles River","comments":null,"startOffset":87,"endOffset":95,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b3a9c346376feef8c2cc1bcc1c2d696","type":"PII","value":"243-248","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":257.69305,"y":130.73999},"width":31.047943,"height":10.0905,"page":637}],"sectionNumber":6340,"textBefore":"Clinica Bohemoslovaca, 17: ","textAfter":", Not GLP","comments":null,"startOffset":186,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61893Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787334Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"93fe5436eaa2331cf837265e7b2b0fd7","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":276.69},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6338,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":133,"endOffset":141,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["62de3a8de330d1cd8846549b3c62480a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"887627df9b4a1d46aed83b25bb98f433","type":"CBI_author","value":"Dymarkowska K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":442.79},"width":53.32598,"height":10.0905,"page":637},{"topLeft":{"x":82.704,"y":432.47},"width":9.730003,"height":10.0905,"page":637}],"sectionNumber":6337,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":29,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"894f231421dcfada192c754dc43620b4","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":526.07},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6336,"textBefore":"of the Rat ","textAfter":" Harlan Cytotest","comments":null,"startOffset":92,"endOffset":100,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c69635ea08e80c6149bf48f769d550a6","type":"published_information","value":"Archives of Toxicology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":234.77997},"width":89.19998,"height":10.0905,"page":637}],"sectionNumber":6339,"textBefore":null,"textAfter":null,"comments":null,"startOffset":96,"endOffset":118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3828b60fe373720c2728326003e456f5","type":"CBI_author","value":"Balikova M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":182.58002},"width":45.927986,"height":10.0905,"page":637}],"sectionNumber":6340,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be38e69bb60ec3c486f932fed2b58021","type":"CBI_author","value":"Pekari K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":265.89},"width":35.04699,"height":10.0905,"page":637}],"sectionNumber":6339,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["c69635ea08e80c6149bf48f769d550a6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"29b7ee37c71816272ea8a405c96a0a7c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":359.97},"width":34.47101,"height":10.0905,"page":637}],"sectionNumber":6337,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":175,"endOffset":183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d6d3864f908ee0a7e5d4a47371d83143","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":57.76001},"width":46.558,"height":10.0905,"page":637}],"sectionNumber":6341,"textBefore":null,"textAfter":null,"comments":null,"startOffset":105,"endOffset":115,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618931Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d3d249175786ccac9b3bd145972b71c","type":"PII","value":"871-877","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":219.704,"y":245.10004},"width":31.117004,"height":10.0905,"page":638}],"sectionNumber":6348,"textBefore":"Gakkaishi, (1996) 19:","textAfter":", Not GLP","comments":null,"startOffset":154,"endOffset":161,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787335Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7ce96bbc160678668d37cea3c78fbe49","type":"CBI_author","value":"Ono Y.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":296.85004},"width":27.604004,"height":10.0905,"page":638}],"sectionNumber":6348,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c3ab4f20291dded392f51c54a2fa9a02","type":"PII","value":"565-571","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.68103,"y":432.47},"width":31.059998,"height":10.0905,"page":638}],"sectionNumber":6346,"textBefore":"vol. 18, No.5. ","textAfter":", Not GLP","comments":null,"startOffset":226,"endOffset":233,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787335Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9c56ed4e224e0500d555b8a1ca5fa5bb","type":"PII","value":"143-156","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.451,"y":338.85},"width":31.089996,"height":10.0905,"page":638}],"sectionNumber":6347,"textBefore":"Environmental Chemistry 14:","textAfter":", Not GLP","comments":null,"startOffset":161,"endOffset":168,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787335Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b72e968a616ea3feaecf8b56d31d6b40","type":"CBI_author","value":"Strobel K. Grummt T.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":390.57},"width":54.11799,"height":10.0905,"page":638},{"topLeft":{"x":82.704,"y":380.25},"width":41.392,"height":10.0905,"page":638}],"sectionNumber":6347,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"}],"manualChanges":[],"engines":["RULE"],"reference":["bb7798f8ecd2eff4b191b13bdb94af99"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"882fbeba19d54740b6474f88f0d0b8c1","type":"published_information","value":"Journal of Toxicology and","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":216.36504,"y":567.47},"width":81.622025,"height":10.0905,"page":638},{"topLeft":{"x":181.94,"y":557.15},"width":14.014008,"height":10.0905,"page":638}],"sectionNumber":6345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":173,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"403f21d284220d78f780aab220c4233c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":110.099976},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6349,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":205,"endOffset":213,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac07db323758988c0cdc36a1d188e77d","type":"published_information","value":"Bulletin","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":453.11},"width":30.069992,"height":10.0905,"page":638}],"sectionNumber":6346,"textBefore":null,"textAfter":null,"comments":null,"startOffset":157,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618932Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f045a27da383b95b774837892a2077c","type":"CBI_author","value":"Ozaki A, et al.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":203.22003},"width":53.109993,"height":10.0905,"page":638}],"sectionNumber":6349,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"77976ca6b8a1ebbc8fb6f8c6c92e84ed","type":"CBI_author","value":"Fahrig R.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":99.17999},"width":35.02899,"height":10.0905,"page":638}],"sectionNumber":6350,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb7798f8ecd2eff4b191b13bdb94af99","type":"published_information","value":"Toxicological and Environmental Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":359.49},"width":50.87799,"height":10.0905,"page":638},{"topLeft":{"x":283.91,"y":359.49},"width":14.013977,"height":10.0905,"page":638},{"topLeft":{"x":181.94,"y":349.17},"width":116.074066,"height":10.0905,"page":638}],"sectionNumber":6347,"textBefore":null,"textAfter":null,"comments":null,"startOffset":116,"endOffset":157,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a7bcd2413ef9e48241400eb514397896","type":"CBI_author","value":"Onodera S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":629.66},"width":41.5,"height":10.0905,"page":638}],"sectionNumber":6345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["882fbeba19d54740b6474f88f0d0b8c1","d06dfe677a1e55de154748faf6a43439"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6bdb917505553169aaca1e8a5da1f125","type":"PII","value":"(1996) 19","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":181.94,"y":245.10004},"width":36.30699,"height":10.0905,"page":638}],"sectionNumber":6348,"textBefore":"Mizu Kankyo Gakkaishi, ","textAfter":":871-877, Not GLP","comments":null,"startOffset":144,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787335Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3ac9b1ce4ffe8e599be8d99cf09e32a0","type":"CBI_author","value":"Haworth S.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":702.62},"width":42.085,"height":10.0905,"page":638}],"sectionNumber":6344,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["0bc249ea05fc0f637e277442c9752f1f"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a0e8ecc653a40fec5e9afa95c2dd971a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":214.02002},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6348,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":181,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f207bbc447829ccc5f08e8c1990d708c","type":"CBI_author","value":"Ransanen L.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":504.95},"width":45.94599,"height":10.0905,"page":638}],"sectionNumber":6346,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618933Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["ac07db323758988c0cdc36a1d188e77d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b85b8520486b8db80d57eae97021946","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":307.76996},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6347,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":188,"endOffset":196,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["bb7798f8ecd2eff4b191b13bdb94af99"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ae427ad86cedc4fadd7094ccf2d061e","type":"PII","value":"497-506","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":181.94,"y":744.5},"width":31.080994,"height":10.0905,"page":638}],"sectionNumber":6343,"textBefore":"of Toxicology, 9(5): ","textAfter":", Not GLP","comments":null,"startOffset":29,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787336Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6d4226a2c8cff3e95d6b5d289fbdf599","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":401.37},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6346,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":253,"endOffset":261,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["ac07db323758988c0cdc36a1d188e77d"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"64109600872881aaea59db7fc43b7f9c","type":"PII","value":"289-299","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.451,"y":546.83},"width":31.089996,"height":10.0905,"page":638}],"sectionNumber":6345,"textBefore":"Environmental Health 44:","textAfter":", Not GLP","comments":null,"startOffset":223,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787336Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5215e6a8261eddc9130a718f3f0136f7","type":"PII","value":"1323-1337","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":241.88899,"y":141.18},"width":40.12599,"height":10.0905,"page":638}],"sectionNumber":6349,"textBefore":"Chemical Toxicology; 42: ","textAfter":", Not GLP","comments":null,"startOffset":176,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787336Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f82847a0a91dd18c1f82893e71d13a8c","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":640.46},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6344,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":139,"endOffset":147,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["0bc249ea05fc0f637e277442c9752f1f"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a2ca6316cad19f4a99a3fd9d77be47c3","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6345,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":250,"endOffset":258,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["882fbeba19d54740b6474f88f0d0b8c1","d06dfe677a1e55de154748faf6a43439"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"336a3ce1b81c714aa013936a91756d1c","type":"PII","value":"325-338","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.23798,"y":57.76001},"width":31.063019,"height":10.0905,"page":638}],"sectionNumber":6350,"textBefore":"Vol. 12, pp ","textAfter":",","comments":null,"startOffset":136,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618934Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787336Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0bc249ea05fc0f637e277442c9752f1f","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":251.501,"y":681.86},"width":46.47702,"height":10.0905,"page":638}],"sectionNumber":6344,"textBefore":null,"textAfter":null,"comments":null,"startOffset":100,"endOffset":111,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1463f68fdb8c5cb7727423f00da1944a","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":713.42},"width":34.47101,"height":10.0905,"page":638}],"sectionNumber":6343,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":56,"endOffset":64,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d06dfe677a1e55de154748faf6a43439","type":"published_information","value":"Environmental Health","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":207.23901,"y":557.15},"width":90.64899,"height":10.0905,"page":638}],"sectionNumber":6345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":199,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1297b9cd90b6a6770a32c3fd5fa7eeeb","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":515.27},"width":46.477036,"height":10.0905,"page":639}],"sectionNumber":6355,"textBefore":null,"textAfter":null,"comments":null,"startOffset":44,"endOffset":55,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f00a171d8e4e8fb197263d42b9c6eb6","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":161.82},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6358,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":201,"endOffset":209,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["680e5a8a82a744357320ca12b9221303"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"731db88620d9156b8c7c5f77db5ed388","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":338.85},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6356,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":190,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["743d35da49044876d678f75a880ab379"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee166b97d949ecdef8ef92e988218ea6","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":119.94},"width":75.18701,"height":10.0905,"page":639}],"sectionNumber":6359,"textBefore":null,"textAfter":null,"comments":null,"startOffset":113,"endOffset":130,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9e439374f3856c31a3978e1b46bf411","type":"CBI_author","value":"Armstrong M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":151.02002},"width":52.524986,"height":10.0905,"page":639}],"sectionNumber":6359,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618935Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["ee166b97d949ecdef8ef92e988218ea6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cbf635890d9b02ec246083de29a97048","type":"PII","value":"85-154","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":239.24304,"y":192.89996},"width":26.577942,"height":10.0905,"page":639}],"sectionNumber":6358,"textBefore":"Molecular Mutagenesis l2:","textAfter":", Not GLP","comments":null,"startOffset":175,"endOffset":181,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787337Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"031df767f81c2d77ab6cb18a28a0de62","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":296.85004},"width":75.18701,"height":10.0905,"page":639}],"sectionNumber":6357,"textBefore":null,"textAfter":null,"comments":null,"startOffset":110,"endOffset":127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2fbe08453a5efee8445499fbee4a283","type":"CBI_author","value":"Jansson K. Jansson V.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":327.93},"width":29.008003,"height":10.0905,"page":639},{"topLeft":{"x":126.95701,"y":327.93},"width":9.747993,"height":10.0905,"page":639},{"topLeft":{"x":82.704,"y":317.61},"width":40.060005,"height":10.0905,"page":639}],"sectionNumber":6357,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["RULE"],"reference":["031df767f81c2d77ab6cb18a28a0de62"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0b24486f616ff3a824b396d48eee32be","type":"CBI_author","value":"McGregor D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":244.62},"width":49.437996,"height":10.0905,"page":639}],"sectionNumber":6358,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["680e5a8a82a744357320ca12b9221303"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78aa848c9ada8f8f6f6542af593f95e7","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":78.52002},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6359,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":163,"endOffset":171,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["ee166b97d949ecdef8ef92e988218ea6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6233083aa8d20a38272b9eebd9c6432d","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":432.47},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6355,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":185,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["1297b9cd90b6a6770a32c3fd5fa7eeeb","3178091b5cd0f7fc076abe730a8a0ad6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a3f5dc11884db7b1458a19c2f776f31","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6353,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":199,"endOffset":207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["829c8790708949000dd105f77c6e4667"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c557828dfc2fc51279a6d93a9a807961","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":251.53401,"y":567.47},"width":46.477005,"height":10.0905,"page":639}],"sectionNumber":6354,"textBefore":null,"textAfter":null,"comments":null,"startOffset":168,"endOffset":179,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618936Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"61daa16b860470af841840e1f3c30fb8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":734.06},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6352,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":18,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a94da966875aa6d8569b1ac08a73844","type":"PII","value":"325-348","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.996,"y":557.15},"width":30.985,"height":10.0905,"page":639}],"sectionNumber":6354,"textBefore":"Environmental Mutagenesis 7:","textAfter":", Not GLP","comments":null,"startOffset":182,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787337Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3178091b5cd0f7fc076abe730a8a0ad6","type":"published_information","value":"Chemosphere","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":463.55},"width":50.43701,"height":10.0905,"page":639}],"sectionNumber":6355,"textBefore":null,"textAfter":null,"comments":null,"startOffset":140,"endOffset":151,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d10ac5070ba97843a5b1ed96ab5f67ac","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":220.42401,"y":619.22},"width":46.47702,"height":10.0905,"page":639}],"sectionNumber":6354,"textBefore":null,"textAfter":null,"comments":null,"startOffset":41,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ccae697b93819b126e7a74cfcdb8b92e","type":"CBI_author","value":"Galloway S.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":67.72003},"width":45.32499,"height":10.0905,"page":639}],"sectionNumber":6360,"textBefore":null,"textAfter":null,"comments":null,"startOffset":10,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"851df7fc04c81abde0f11f874c47aa19","type":"CBI_author","value":"Hattula M. Knuutinen J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":515.27},"width":53.974007,"height":10.0905,"page":639},{"topLeft":{"x":82.704,"y":504.95},"width":47.034996,"height":10.0905,"page":639}],"sectionNumber":6355,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":38,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"}],"manualChanges":[],"engines":["RULE"],"reference":["1297b9cd90b6a6770a32c3fd5fa7eeeb","3178091b5cd0f7fc076abe730a8a0ad6"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f3805766b4ef6bffd7f5d76022ef83cc","type":"CBI_author","value":"Jansson K. Jansson V.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":421.55},"width":29.008003,"height":10.0905,"page":639},{"topLeft":{"x":126.95701,"y":421.55},"width":9.747993,"height":10.0905,"page":639},{"topLeft":{"x":82.704,"y":411.21},"width":40.060005,"height":10.0905,"page":639}],"sectionNumber":6356,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618937Z"}],"manualChanges":[],"engines":["RULE"],"reference":["743d35da49044876d678f75a880ab379"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"743d35da49044876d678f75a880ab379","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":380.25},"width":75.18701,"height":10.0905,"page":639}],"sectionNumber":6356,"textBefore":null,"textAfter":null,"comments":null,"startOffset":140,"endOffset":157,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f23bdc9e8288aafb77c3f8d0b6a5d11","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":255.45001},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6357,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":160,"endOffset":168,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["031df767f81c2d77ab6cb18a28a0de62"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb8a35ed13a7ffb0c26f6ce74293db35","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":526.07},"width":34.47101,"height":10.0905,"page":639}],"sectionNumber":6354,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":209,"endOffset":217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["d10ac5070ba97843a5b1ed96ab5f67ac","c557828dfc2fc51279a6d93a9a807961"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9414161afb1b11bf0cf9ea5dd85327a7","type":"PII","value":"1617-1625","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.39702,"y":463.55},"width":40.137955,"height":10.0905,"page":639}],"sectionNumber":6355,"textBefore":"Chloroguaiacols Chemosphere 14: ","textAfter":", Not GLP","comments":null,"startOffset":156,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787338Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"829c8790708949000dd105f77c6e4667","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":671.54},"width":46.477036,"height":10.0905,"page":639}],"sectionNumber":6353,"textBefore":null,"textAfter":null,"comments":null,"startOffset":147,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bd8a94836ffd5c452a5a81d6f8a77dbe","type":"CBI_author","value":"Valencia R.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":619.22},"width":43.543,"height":10.0905,"page":639}],"sectionNumber":6354,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["d10ac5070ba97843a5b1ed96ab5f67ac","c557828dfc2fc51279a6d93a9a807961"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d153835b9b9820ca69ab6690e1804640","type":"CBI_author","value":"Russell L.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":723.26},"width":37.413994,"height":10.0905,"page":639}],"sectionNumber":6353,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["829c8790708949000dd105f77c6e4667"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"680e5a8a82a744357320ca12b9221303","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":192.89996},"width":46.477036,"height":10.0905,"page":639}],"sectionNumber":6358,"textBefore":null,"textAfter":null,"comments":null,"startOffset":160,"endOffset":171,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618938Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7d9bfc9d39889ca9a36050d58ab32bfd","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":307.76996},"width":34.47101,"height":10.0905,"page":640}],"sectionNumber":6366,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":283,"endOffset":291,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["93a2ca86c62bcd545f076fa93c26549a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92af713758d287ebe3d59cd3082d468e","type":"CBI_author","value":"Matsuoka A.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":681.86},"width":47.36799,"height":10.0905,"page":640}],"sectionNumber":6363,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db0871df8c0ddec0a54e64ec5424c1fe","type":"PII","value":"629-799","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":203.98099,"y":203.70001},"width":31.000015,"height":10.0905,"page":640}],"sectionNumber":6367,"textBefore":"2000 Nov; 30(6):","textAfter":", Not GLP","comments":null,"startOffset":253,"endOffset":260,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787338Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b28b3cf6b2828d5ec890fb56839f6ca8","type":"CBI_author","value":"Juhl U.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":588.26},"width":27.118004,"height":10.0905,"page":640}],"sectionNumber":6364,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6552217ea7dd1519b16a9bcf08048414","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":692.66},"width":34.47101,"height":10.0905,"page":640}],"sectionNumber":6362,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":131,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["3ff1608acf23a7e965991a11e07a5a55"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f59f00b75b2d9dd4bb538bf23dbf3aea","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":599.06},"width":34.47101,"height":10.0905,"page":640}],"sectionNumber":6363,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":198,"endOffset":206,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"50b2aa7f36d80ffc487102b2ac1ffbeb","type":"published_information","value":"Environmental Toxicology and Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":130.73999},"width":115.971985,"height":10.0905,"page":640},{"topLeft":{"x":181.94,"y":120.41998},"width":38.476013,"height":10.0905,"page":640}],"sectionNumber":6368,"textBefore":null,"textAfter":null,"comments":null,"startOffset":101,"endOffset":139,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3ff1608acf23a7e965991a11e07a5a55","type":"published_information","value":"Mutagenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":723.74},"width":46.477036,"height":10.0905,"page":640}],"sectionNumber":6362,"textBefore":null,"textAfter":null,"comments":null,"startOffset":91,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618939Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2cf7de497fd524d9fc17e9fb8df9e2de","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":172.62},"width":34.47101,"height":10.0905,"page":640}],"sectionNumber":6367,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":280,"endOffset":288,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["6766cceaaf86361cd26f8da96a4a94f4"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25bfd17329118208486a7316cc18a985","type":"CBI_author","value":"Ames","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":239.612,"y":369.81},"width":21.781006,"height":10.0905,"page":640}],"sectionNumber":6366,"textBefore":"putative nongenotoxic (","textAfter":"-negative) mouse hepatocarcinogens","comments":null,"startOffset":194,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":["93a2ca86c62bcd545f076fa93c26549a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93a2ca86c62bcd545f076fa93c26549a","type":"published_information","value":"Mutation Research","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":349.17},"width":75.18701,"height":10.0905,"page":640}],"sectionNumber":6366,"textBefore":null,"textAfter":null,"comments":null,"startOffset":233,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6766cceaaf86361cd26f8da96a4a94f4","type":"published_information","value":"Crit Rev Toxicol","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":214.02002},"width":67.53699,"height":10.0905,"page":640}],"sectionNumber":6367,"textBefore":null,"textAfter":null,"comments":null,"startOffset":219,"endOffset":235,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"90e5594501d048fdcd0e4536dd51e1d1","type":"PII","value":"603-608","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.11403,"y":120.41998},"width":31.146988,"height":10.0905,"page":640}],"sectionNumber":6368,"textBefore":"and Chemistry 28:","textAfter":", Not GLP","comments":null,"startOffset":143,"endOffset":150,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787339Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e3f332bd2bd1b9d15dad00565396169c","type":"PII","value":"165-172","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.451,"y":463.55},"width":31.089996,"height":10.0905,"page":640}],"sectionNumber":6365,"textBefore":"Environmental Chemistry 16:","textAfter":", Not GLP","comments":null,"startOffset":148,"endOffset":155,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787339Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5f52999ba0f06d4867c6a1ecf4ff7bb4","type":"CBI_author","value":"National Cancer Institute","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":78.52002},"width":32.041,"height":10.0905,"page":640},{"topLeft":{"x":82.704,"y":68.20001},"width":26.433998,"height":10.0905,"page":640},{"topLeft":{"x":82.704,"y":57.76001},"width":30.637001,"height":10.0905,"page":640}],"sectionNumber":6369,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61894Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b1a9367816794515361474c6791e8238","type":"CBI_author","value":"Miyagawa M.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":421.55},"width":51.426994,"height":10.0905,"page":640}],"sectionNumber":6366,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":26,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618941Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["93a2ca86c62bcd545f076fa93c26549a"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f1f2dcf6a7dc3bf79bee56ce90d8e93","type":"CBI_author","value":"Sasaki Y.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":296.85004},"width":35.406998,"height":10.0905,"page":640}],"sectionNumber":6367,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618941Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["6766cceaaf86361cd26f8da96a4a94f4"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7d12ede949092208c765af29c0f7dd49","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":432.47},"width":34.528,"height":10.0905,"page":640}],"sectionNumber":6365,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":175,"endOffset":183,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618941Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["3536b1317eff0060e57eb54d079f6e8e"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"72770b469596e5f5bd2ab464195cb039","type":"CBI_author","value":"Kitchen K., Brown J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":504.95},"width":54.1,"height":10.0905,"page":640},{"topLeft":{"x":82.704,"y":494.51},"width":33.489998,"height":10.0905,"page":640}],"sectionNumber":6365,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"}],"manualChanges":[],"engines":["RULE"],"reference":["3536b1317eff0060e57eb54d079f6e8e"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3536b1317eff0060e57eb54d079f6e8e","type":"published_information","value":"Toxicological and Environmental Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":484.19},"width":50.87799,"height":10.0905,"page":640},{"topLeft":{"x":283.91,"y":484.19},"width":14.013977,"height":10.0905,"page":640},{"topLeft":{"x":181.94,"y":473.87},"width":116.074066,"height":10.0905,"page":640}],"sectionNumber":6365,"textBefore":null,"textAfter":null,"comments":null,"startOffset":103,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9c53544d08d8b64f2e9c82dd8d775080","type":"PII","value":"159-165","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.451,"y":630.14},"width":31.089996,"height":10.0905,"page":640}],"sectionNumber":6363,"textBefore":"Mutagen Res., 20:","textAfter":", Not GLP","comments":null,"startOffset":171,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787339Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d38d570e71e51ea6bd3077cfd88ae954","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":89.343994},"width":34.47101,"height":10.0905,"page":640}],"sectionNumber":6368,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":170,"endOffset":178,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["50b2aa7f36d80ffc487102b2ac1ffbeb"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c4602cc9a0f1149ecbe04d573a966bcd","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":34.47101,"height":10.0905,"page":640}],"sectionNumber":6364,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":173,"endOffset":181,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0e0741a348bd7c6139c52cab101a9bc3","type":"CBI_author","value":"Yin D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":161.82},"width":25.57,"height":10.0905,"page":640}],"sectionNumber":6368,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["50b2aa7f36d80ffc487102b2ac1ffbeb"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53405ffb7b02e4c66b80344e3bf2854c","type":"CBI_author","value":"Gotz R.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":265.40997},"width":28.918,"height":10.0905,"page":641}],"sectionNumber":6377,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618942Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"98b5096989ef28a3065cc9bd47401a07","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":703.1},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6371,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":83,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c87e65bc274dadad577b320655c150f","type":"PII","value":"2389-2394","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.72905,"y":119.94},"width":40.008957,"height":10.0905,"page":641}],"sectionNumber":6378,"textBefore":"test Carcinogenesis l3:","textAfter":", Not GLP","comments":null,"startOffset":149,"endOffset":158,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78734Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4e1b83ab9b02012b70b42523390b4186","type":"CBI_author","value":"Carlson G.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":338.25},"width":39.951996,"height":10.0905,"page":641}],"sectionNumber":6376,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93bfcc60f18e452a5f95eb4170a1a916","type":"PII","value":"521-525","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.14503,"y":661.22},"width":31.15596,"height":10.0905,"page":641}],"sectionNumber":6372,"textBefore":"trichlorophenol Chemosphere 89, ","textAfter":", Not GLP","comments":null,"startOffset":111,"endOffset":118,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78734Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ca5f5148fe7e04916715c35ee02c9cb0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":349.17},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6375,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":173,"endOffset":181,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4cee93b563cab0723869f836be605cf","type":"PII","value":"145-151","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":235.15701,"y":307.28998},"width":31.143982,"height":10.0905,"page":641}],"sectionNumber":6376,"textBefore":"rat Toxicology l1:","textAfter":", Not GLP","comments":null,"startOffset":108,"endOffset":115,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78734Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1a08affb6239a3595b562a0b96ad485d","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":442.79},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6374,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":217,"endOffset":225,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618943Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"12b47540cda10e30b880372e8112ad2b","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":276.21002},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6376,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":135,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04795ca8cdfbbdbb99d89024e2730d7a","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":630.14},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6372,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":138,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["102aaa044aa3ba44fe49970f9afaabbb"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"50461efa2f1f097f46b177e6fea2a424","type":"CBI_author","value":"Blackburn K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":619.22},"width":49.555,"height":10.0905,"page":641}],"sectionNumber":6373,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["8b885b6b743b674ad6cdf574cc294933"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d60e6588eeaf44aec9ea4bd8b9856d45","type":"CBI_author","value":"Arrhenius E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":431.99},"width":47.017006,"height":10.0905,"page":641}],"sectionNumber":6375,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":27,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7e69e941587aab39e86b403355196714","type":"CBI_author","value":"Exon J. Koller L.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":525.59},"width":54.019005,"height":10.0905,"page":641},{"topLeft":{"x":82.704,"y":515.27},"width":8.650002,"height":10.0905,"page":641}],"sectionNumber":6374,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0e7ef28cd7238fa478d47aefbf246347","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":88.86401},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6378,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":178,"endOffset":186,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["21a8c8f545082496c83f73bd27f4bced"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80140056d1228aeef6c05555f8c7d7c9","type":"PII","value":"233-239","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":234.67102,"y":567.47},"width":31.149963,"height":10.0905,"page":641}],"sectionNumber":6373,"textBefore":"Applied Toxicology 6, ","textAfter":", Not GLP","comments":null,"startOffset":163,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.78734Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"42c920c4b116fb6ad3c003a01dae9fe0","type":"CBI_author","value":"Huff J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":692.18},"width":25.930008,"height":10.0905,"page":641}],"sectionNumber":6372,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618944Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["102aaa044aa3ba44fe49970f9afaabbb"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ca41d83760f966fd05290018bf36bbd","type":"PII","value":"147-155","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.44101,"y":203.22003},"width":31.059998,"height":10.0905,"page":641}],"sectionNumber":6377,"textBefore":"Arch. Toxicol. 44:","textAfter":", Not GLP","comments":null,"startOffset":183,"endOffset":190,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787341Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"21a8c8f545082496c83f73bd27f4bced","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":119.94},"width":55.963043,"height":10.0905,"page":641}],"sectionNumber":6378,"textBefore":null,"textAfter":null,"comments":null,"startOffset":131,"endOffset":145,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"44385b69cf96e081b1c3c52c391014f6","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":172.14001},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6377,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":210,"endOffset":218,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d743692ec065b8695dd8e1098893b5c4","type":"CBI_author","value":"Kitchen K., Brown J.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":78.03998},"width":54.1,"height":10.0905,"page":641},{"topLeft":{"x":82.704,"y":67.72003},"width":33.489998,"height":10.0905,"page":641}],"sectionNumber":6379,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"805a91456a95b1f1d85b13c8766adcec","type":"CBI_author","value":"Long","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":692.18},"width":20.007996,"height":10.0905,"page":641}],"sectionNumber":6372,"textBefore":null,"textAfter":"-term toxicology and","comments":null,"startOffset":28,"endOffset":32,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["102aaa044aa3ba44fe49970f9afaabbb"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"102aaa044aa3ba44fe49970f9afaabbb","type":"published_information","value":"Chemosphere","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":661.22},"width":50.43701,"height":10.0905,"page":641}],"sectionNumber":6372,"textBefore":null,"textAfter":null,"comments":null,"startOffset":95,"endOffset":106,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b1b782ea2600b2d0f86753281421534","type":"CBI_author","value":"Heil J. Reifferscheid G.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":161.34003},"width":16.444,"height":10.0905,"page":641},{"topLeft":{"x":129.963,"y":161.34003},"width":6.751007,"height":10.0905,"page":641},{"topLeft":{"x":82.704,"y":151.02002},"width":49.392998,"height":10.0905,"page":641},{"topLeft":{"x":82.704,"y":140.58002},"width":9.610001,"height":10.0905,"page":641}],"sectionNumber":6378,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"}],"manualChanges":[],"engines":["RULE"],"reference":["21a8c8f545082496c83f73bd27f4bced"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6519ecd766374d29987896fcccbc1132","type":"PII","value":"307-330","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":239.71103,"y":473.87},"width":31.029968,"height":10.0905,"page":641}],"sectionNumber":6374,"textBefore":"Chapter 25. pp. ","textAfter":", Not GLP","comments":null,"startOffset":190,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618945Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787341Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8b885b6b743b674ad6cdf574cc294933","type":"published_information","value":"Reproductive Toxicology","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":248.46803,"y":619.22},"width":49.483017,"height":10.0905,"page":641},{"topLeft":{"x":181.94,"y":608.9},"width":42.552994,"height":10.0905,"page":641}],"sectionNumber":6373,"textBefore":null,"textAfter":null,"comments":null,"startOffset":51,"endOffset":74,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d31b219c5a0f9cd6c498551cb2fff70","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":536.39},"width":34.47101,"height":10.0905,"page":641}],"sectionNumber":6373,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":190,"endOffset":198,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["8b885b6b743b674ad6cdf574cc294933"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3157b1110fe4a7ada15985d0188ce251","type":"PII","value":"35-46","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.451,"y":380.25},"width":22.098999,"height":10.0905,"page":641}],"sectionNumber":6375,"textBefore":"Biol. Interactions. 18:","textAfter":", Not GLP","comments":null,"startOffset":148,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787341Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5d800037247f8b34913f584fdba082e5","type":"PII","value":"339-347","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.987,"y":463.55},"width":30.994003,"height":10.0905,"page":642}],"sectionNumber":6384,"textBefore":"Toxicological Sciences 124:","textAfter":", Not GLP","comments":null,"startOffset":192,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787341Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"197ae7157f5e94a6d869a977ddc5b4d7","type":"CBI_author","value":"Henschler R. Appel K. Heyworth C. Glatt H.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":244.62},"width":53.992012,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":234.29999},"width":53.892998,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":223.97998},"width":53.974007,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":213.53998},"width":29.899002,"height":10.0905,"page":642}],"sectionNumber":6387,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":57,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"576c9e8e56dd051de85646180b284e4f","type":"PII","value":"11-18","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":203.98099,"y":650.78},"width":22.009018,"height":10.0905,"page":642}],"sectionNumber":6382,"textBefore":"Toxicological Pathology 10(2):","textAfter":", Not GLP","comments":null,"startOffset":188,"endOffset":193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787342Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d3b3900bbdb0f26a00406dbc0dc100b6","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":88.86401},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6388,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":143,"endOffset":151,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c834ca044edb3d7eae3e23aaeaf0ce9","type":"CBI_author","value":"Jia R-W. Liao T-T. Shi Y-L. Wang L. Xia","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":78.03998},"width":53.85299,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":67.72003},"width":53.885994,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":57.27997},"width":54.001,"height":10.0905,"page":642}],"sectionNumber":6389,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":54,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618946Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5476fe439801eb49f953a28e1277e146","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":151.5},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6387,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":265,"endOffset":273,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d25e8b6371173946a13f422927fc05ed","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":536.39},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6383,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":143,"endOffset":151,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"474202e1fcfa6b2170147affc69a84e1","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":619.82},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6382,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":213,"endOffset":221,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e901df8e4016ec74432bf568e38d73c0","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":255.45001},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6386,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":173,"endOffset":181,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["5158b4d1b874a241722fdbc0eab559d0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6459ba705f0e9b7176d313b9999d7869","type":"PII","value":"19-31","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.451,"y":567.47},"width":22.098999,"height":10.0905,"page":642}],"sectionNumber":6383,"textBefore":"Appl. Pharmacol. 82:","textAfter":", Not GLP","comments":null,"startOffset":118,"endOffset":123,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787342Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a9223423d82f7edbdec03211239e3e98","type":"PII","value":"31-37","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.124,"y":182.58002},"width":22.186005,"height":10.0905,"page":642}],"sectionNumber":6387,"textBefore":"In Vitro 15:","textAfter":", Not GLP","comments":null,"startOffset":240,"endOffset":245,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787343Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7447bddb6f197f50316eaab398f9b267","type":"CBI_author","value":"Jansson K. Jansson V.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":140.58002},"width":29.008003,"height":10.0905,"page":642},{"topLeft":{"x":126.95701,"y":140.58002},"width":9.747993,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":130.26001},"width":40.060005,"height":10.0905,"page":642}],"sectionNumber":6388,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618947Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a439bea55b733aa92ab5a97c0403972b","type":"PII","value":"289-94","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":240.42198,"y":119.94},"width":26.608017,"height":10.0905,"page":642}],"sectionNumber":6388,"textBefore":"hamster cells Toxicol.Lett.69:","textAfter":", Not GLP","comments":null,"startOffset":117,"endOffset":123,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787343Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"49c3cabbd2c34e90946cca34e9796ae8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":338.85},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6385,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":217,"endOffset":225,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"11dd4e8aee1c76e84daa3f7b3c8d7550","type":"PII","value":"31-49","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.19101,"y":754.82},"width":22.03897,"height":10.0905,"page":642}],"sectionNumber":6381,"textBefore":"Toxicology 88:","textAfter":", Not GLP","comments":null,"startOffset":14,"endOffset":19,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787343Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ee90daabfe2340d6cd0916335b0f1e52","type":"CBI_author","value":"Stoner G.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":608.9},"width":35.527,"height":10.0905,"page":642}],"sectionNumber":6383,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"784070e846e79f129b0ffdc1d6a10aea","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":432.47},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6384,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":219,"endOffset":227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["d73d8b699e3e078d95dc1ad6f9a43116"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"321a2cf445f709531ccd70ab74e0aaab","type":"CBI_author","value":"Cascorbi I. Ahlers J.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":421.55},"width":53.991997,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":411.21},"width":32.895996,"height":10.0905,"page":642}],"sectionNumber":6385,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ac6c95f3c13d05882a57768152ff98d7","type":"CBI_author","value":"Vero","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":224.97804,"y":57.27997},"width":19.044998,"height":10.0905,"page":642}],"sectionNumber":6389,"textBefore":"Component Analysis in ","textAfter":" Cells Exposed","comments":null,"startOffset":128,"endOffset":132,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1cbd81936c43060929bf9f5b72ef1e8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":723.74},"width":34.47101,"height":10.0905,"page":642}],"sectionNumber":6381,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":39,"endOffset":47,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618948Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"398cac3c004ff59e7cc4ae1e67dbe736","type":"PII","value":"178-81","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.37604,"y":286.52997},"width":26.613953,"height":10.0905,"page":642}],"sectionNumber":6386,"textBefore":"Laboratory Animals 14:","textAfter":", Not GLP","comments":null,"startOffset":147,"endOffset":153,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787343Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5158b4d1b874a241722fdbc0eab559d0","type":"published_information","value":"ATLA","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":296.85004},"width":24.993988,"height":10.0905,"page":642}],"sectionNumber":6386,"textBefore":null,"textAfter":null,"comments":null,"startOffset":103,"endOffset":107,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3119cb475be6c6842d783b70a9d8b43a","type":"CBI_author","value":"Ekwall B.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":327.93},"width":36.954994,"height":10.0905,"page":642}],"sectionNumber":6386,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["5158b4d1b874a241722fdbc0eab559d0"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e27a38f35df87d7a4e7a95dae4e92d2","type":"CBI_author","value":"Butt C. Wang D. Stapleton H.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":525.59},"width":53.928993,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":515.27},"width":54.073006,"height":10.0905,"page":642},{"topLeft":{"x":82.704,"y":504.95},"width":9.730003,"height":10.0905,"page":642}],"sectionNumber":6384,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"}],"manualChanges":[],"engines":["RULE"],"reference":["d73d8b699e3e078d95dc1ad6f9a43116"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"000ea90b43727fccb874312667fd9538","type":"PII","value":"197-210","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":237.19101,"y":369.81},"width":31.029968,"height":10.0905,"page":642}],"sectionNumber":6385,"textBefore":"cells Toxicology 58:","textAfter":", Not GLP","comments":null,"startOffset":190,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787344Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d73d8b699e3e078d95dc1ad6f9a43116","type":"published_information","value":"Toxicological Sciences","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":473.87},"width":50.87799,"height":10.0905,"page":642},{"topLeft":{"x":265.42398,"y":473.87},"width":32.446014,"height":10.0905,"page":642}],"sectionNumber":6384,"textBefore":null,"textAfter":null,"comments":null,"startOffset":165,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e11df0d6500283a31326d743cc1c4e9","type":"CBI_author","value":"Pereira M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":712.94},"width":39.105995,"height":10.0905,"page":642}],"sectionNumber":6382,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e67db1c41f1e0cf0a92e4c50477518a2","type":"CBI_author","value":"Utsumi H. Hakoda M. Kiyoshige K. Manabe H. Mitade C. Murayama J. Han S. Hamada A.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":161.34003},"width":53.883995,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":151.02002},"width":53.97399,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":140.58002},"width":53.866005,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":130.26001},"width":53.991997,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":119.94},"width":53.974007,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":109.619995},"width":53.866005,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":99.17999},"width":15.940002,"height":10.0905,"page":643},{"topLeft":{"x":128.406,"y":99.17999},"width":8.280991,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":88.86401},"width":41.868996,"height":10.0905,"page":643}],"sectionNumber":6398,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":96,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618949Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4b4d240b14f63799c2b45a1f04592baf","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":349.17},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6395,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":223,"endOffset":231,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"98fbe4db3e49686c130cab1c9c0045bd","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":536.39},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6393,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":228,"endOffset":236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2e02d98bf83dbbbbea77186118df1524","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":255.45001},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6396,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":232,"endOffset":240,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["9a9b618d2cab8ffc3db36c9f23ef3db3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cdaa1ef62ed0e303ac0ff2800fd0d9cc","type":"CBI_author","value":"Judis J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":692.18},"width":27.603996,"height":10.0905,"page":643}],"sectionNumber":6392,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":["21effbd1ddf7f6ccf16df4b3b07b7311"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"49b9d7b561acb7125598ece809352c5d","type":"PII","value":"1145-47","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":227.25502,"y":650.78},"width":31.015,"height":10.0905,"page":643}],"sectionNumber":6392,"textBefore":"Pharmaceutical Sciences 71:","textAfter":", Not GLP","comments":null,"startOffset":130,"endOffset":137,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787344Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3b4516d706bb7f15b368781e8dd10ed8","type":"CBI_author","value":"van Delft J. Van Agen E. van Breda S.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":78.03998},"width":53.88401,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":67.72003},"width":53.946983,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":57.27997},"width":53.97399,"height":10.0905,"page":643}],"sectionNumber":6399,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"350022df6ce891a6f431375beb682590","type":"PII","value":"267-276","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":243.905,"y":473.87},"width":31.156006,"height":10.0905,"page":643}],"sectionNumber":6394,"textBefore":"Eisei Kagaku 36:","textAfter":", Not GLP","comments":null,"startOffset":192,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787344Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"58a4746f1e3bb53b51df3511fac07c74","type":"PII","value":"146-53","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":243.91402,"y":567.47},"width":26.595993,"height":10.0905,"page":643}],"sectionNumber":6393,"textBefore":"TCP Toxicology, 282:","textAfter":", Not GLP","comments":null,"startOffset":202,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61895Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787345Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bc8b604547746c61cb0fe63c128a9207","type":"PII","value":"325-332","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.49,"y":119.94},"width":31.050995,"height":10.0905,"page":643}],"sectionNumber":6398,"textBefore":"and Technology 25:","textAfter":", Not GLP","comments":null,"startOffset":201,"endOffset":208,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787345Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ef3840ba4cca3097c3ffbda2f30e548c","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":88.86401},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6398,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":228,"endOffset":236,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a9b618d2cab8ffc3db36c9f23ef3db3","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":296.85004},"width":39.47499,"height":10.0905,"page":643}],"sectionNumber":6396,"textBefore":null,"textAfter":null,"comments":null,"startOffset":175,"endOffset":185,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bbff3e15b11c428c5c693ce65af793f2","type":"CBI_author","value":"Ma Y. Liu C. Lam P. Wu R. Giesy J. Hecker M. Zhang X. Zhou B.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":608.9},"width":53.974007,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":598.58},"width":53.928993,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":588.26},"width":53.892998,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":577.79},"width":53.982994,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":567.47},"width":54.090996,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":557.15},"width":30.582993,"height":10.0905,"page":643}],"sectionNumber":6393,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":76,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"adfc98571bce2c73d7db80ece5f5d1f9","type":"published_information","value":"Environmental Toxicology and Chemistry","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":213.53998},"width":115.938965,"height":10.0905,"page":643},{"topLeft":{"x":181.94,"y":203.22003},"width":38.476013,"height":10.0905,"page":643}],"sectionNumber":6397,"textBefore":null,"textAfter":null,"comments":null,"startOffset":135,"endOffset":173,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b1a18358fc71e4fb75eb4263766da70","type":"PII","value":"258-271","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":181.94,"y":286.52997},"width":31.080994,"height":10.0905,"page":643}],"sectionNumber":6396,"textBefore":"Health Science 47: ","textAfter":", Not GLP","comments":null,"startOffset":205,"endOffset":212,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787345Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"61176c7b42da4ee30d2de91ac0600164","type":"CBI_author","value":"Murayama J. Ishiwata F. Utsumi H. Hamada A.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":525.59},"width":53.866005,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":515.27},"width":31.375008,"height":10.0905,"page":643},{"topLeft":{"x":128.28902,"y":515.27},"width":8.280991,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":504.95},"width":53.883995,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":494.51},"width":41.868996,"height":10.0905,"page":643}],"sectionNumber":6394,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":58,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6ba21566878e2ce54c50f37813a70e3e","type":"CBI_author","value":"Sakazaki H. Ueno H. Umetani K. Utsumi H. Nakamuro K.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":338.25},"width":53.874992,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":327.93},"width":54.010002,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":317.61},"width":54.001,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":307.28998},"width":53.883995,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":296.85004},"width":49.906,"height":10.0905,"page":643}],"sectionNumber":6396,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":67,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618951Z"}],"manualChanges":[],"engines":["RULE"],"reference":["9a9b618d2cab8ffc3db36c9f23ef3db3"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"60a1e8367681439aa22e49b37f077fa8","type":"CBI_author","value":"Shannon R. Boardman G. Dietrich A. Bevan D.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":244.62},"width":54.090996,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":234.29999},"width":53.857002,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":223.97998},"width":53.866005,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":213.53998},"width":34.929993,"height":10.0905,"page":643}],"sectionNumber":6397,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":58,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"}],"manualChanges":[],"engines":["RULE"],"reference":["adfc98571bce2c73d7db80ece5f5d1f9"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"47c79ec5f11e36d6f7e8fc62eb7b428c","type":"CBI_author","value":"Qin H. Liu J. Zhang Z. Li J. Gao G. Yang Y. Yuan X. Wu D.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":431.99},"width":54.11802,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":421.55},"width":53.98301,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":411.21},"width":53.947,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":400.89},"width":54.090996,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":390.57},"width":24.967003,"height":10.0905,"page":643}],"sectionNumber":6395,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":72,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e170bcc618a3341a388f7ffd30daeeee","type":"CBI_author","value":"J. Lu B. Xu D-S.","reason":"Author found","matchedRule":6,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":754.82},"width":54.055,"height":10.0905,"page":643},{"topLeft":{"x":82.704,"y":744.5},"width":17.769997,"height":10.0905,"page":643}],"sectionNumber":6391,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":16,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a6f7691d14d032cf41fb3298dc1132f9","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":172.14001},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6397,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":202,"endOffset":210,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["adfc98571bce2c73d7db80ece5f5d1f9"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2b0cdf3cfd17dc35f8762fac8e5e11aa","type":"PII","value":"57-66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":233.11403,"y":203.22003},"width":22.155975,"height":10.0905,"page":643}],"sectionNumber":6397,"textBefore":"and Chemistry 10:","textAfter":", Not GLP","comments":null,"startOffset":177,"endOffset":182,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787345Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"87637e32315a37a92f2d368cb1fa0b53","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":619.82},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6392,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":157,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["21effbd1ddf7f6ccf16df4b3b07b7311"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac1dae21cc2c649c03599aa3953eaa04","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":703.1},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6391,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":97,"endOffset":105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618952Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21effbd1ddf7f6ccf16df4b3b07b7311","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":661.22},"width":47.880997,"height":10.0905,"page":643}],"sectionNumber":6392,"textBefore":null,"textAfter":null,"comments":null,"startOffset":92,"endOffset":102,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"018c222f1b4087db5bcc89a348e900b8","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":442.79},"width":34.47101,"height":10.0905,"page":643}],"sectionNumber":6394,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":219,"endOffset":227,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da890c82d8d51dba59833751a7f06a17","type":"PII","value":"60-66","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":197.987,"y":380.25},"width":22.003006,"height":10.0905,"page":643}],"sectionNumber":6395,"textBefore":"Analytical Biochemistry 462:","textAfter":", Not GLP","comments":null,"startOffset":198,"endOffset":203,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787346Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cd44055325118e84a8656d4525ae9ffa","type":"CBI_address","value":"Bracknell","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":227.87604,"y":349.17},"width":35.983032,"height":10.0905,"page":644}],"sectionNumber":6405,"textBefore":"Hill International Research, ","textAfter":", Berks RG42","comments":null,"startOffset":140,"endOffset":149,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99d6af4b58926aecd4a45d8acc9e6b35","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":68.67999},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6407,"textBefore":"to Male Rats ","textAfter":" Leatherhead Food","comments":null,"startOffset":179,"endOffset":187,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1221b33ef6d693ea209d875457d0700f","type":"CBI_address","value":"Syngenta Ltd.","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":390.57},"width":51.454002,"height":10.0905,"page":644}],"sectionNumber":6405,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":28,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a63684968e7880aab7e2eb2e5fb50512","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":505.43},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6403,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":212,"endOffset":220,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["7e3f7df5f66416a227265429c10a7507"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f64f30c9d0adffcd8830a46d632c3d29","type":"PII","value":"63-75","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":238.23201,"y":640.46},"width":22.077988,"height":10.0905,"page":644}],"sectionNumber":6402,"textBefore":"Chemico-Biological Interactions 76:","textAfter":", Not GLP","comments":null,"startOffset":196,"endOffset":201,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787346Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"83ea9c1d9ac9de1f6765b6bd79cea96c","type":"CBI_author","value":"Shi Y-L. Wang L. Zhou Q.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":598.58},"width":13.086998,"height":10.0905,"page":644},{"topLeft":{"x":118.56,"y":598.58},"width":18.149994,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":588.26},"width":54.045998,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":577.79},"width":9.730003,"height":10.0905,"page":644}],"sectionNumber":6403,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":39,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"}],"manualChanges":[],"engines":["RULE"],"reference":["7e3f7df5f66416a227265429c10a7507"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"09303e659c0b5d4f15754854d806d553","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":245.49799,"y":442.79},"width":27.574036,"height":10.0905,"page":644},{"topLeft":{"x":289.60403,"y":442.79},"width":8.550995,"height":10.0905,"page":644}],"sectionNumber":6404,"textBefore":null,"textAfter":null,"comments":null,"startOffset":189,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2487ec324771aa7e01788d08fb0319dc","type":"CBI_author","value":"Lake B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":141.18},"width":29.385994,"height":10.0905,"page":644}],"sectionNumber":6407,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47e94772989ca2e926609920176af0e9","type":"CBI_author","value":"Bhandal H.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":265.89},"width":42.112,"height":10.0905,"page":644}],"sectionNumber":6406,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":25,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"309e9349eae599b5fadead1bf5f038e6","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":609.38},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6402,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":221,"endOffset":229,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f413c2f07250621164651750c72fc39","type":"published_information","value":"Carcinogenesis","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":181.94,"y":744.5},"width":56.014008,"height":10.0905,"page":644}],"sectionNumber":6401,"textBefore":null,"textAfter":null,"comments":null,"startOffset":45,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618954Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d8946299f23dcec2eacace2d8bd1a6fd","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":401.37},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6404,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":244,"endOffset":252,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["09303e659c0b5d4f15754854d806d553"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cd8e48a84c6303732949a57f831cfede","type":"CBI_author","value":"Van den Berg K.","reason":"Author found","matchedRule":10,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":702.62},"width":54.045998,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":692.18},"width":9.730003,"height":10.0905,"page":644}],"sectionNumber":6402,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7e3f7df5f66416a227265429c10a7507","type":"published_information","value":"Journal of","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.52156866,0.92156863,1.0],"positions":[{"topLeft":{"x":209.04802,"y":546.83},"width":41.274994,"height":10.0905,"page":644}],"sectionNumber":6403,"textBefore":null,"textAfter":null,"comments":null,"startOffset":160,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":true,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b38304ed53d4a2ff680a8edc4f90c73a","type":"CBI_author","value":"Vero","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":251.00601,"y":577.79},"width":19.044983,"height":10.0905,"page":644}],"sectionNumber":6403,"textBefore":"Sensitivity in Mammalian ","textAfter":" Cells Exposed","comments":null,"startOffset":109,"endOffset":113,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["7e3f7df5f66416a227265429c10a7507"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15c2c35be6fddad7280da6d4ee5edae5","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":183.06},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6406,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":183,"endOffset":191,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"365df3c591fe1390ac669330a926500c","type":"PII","value":"532-41","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":249.908,"y":432.47},"width":26.602005,"height":10.0905,"page":644}],"sectionNumber":6404,"textBefore":"of Toxicology, 33(6):","textAfter":", Not GLP","comments":null,"startOffset":218,"endOffset":224,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787347Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"024943c7f489671eab2d705fe3911c42","type":"PII","value":"479-487","reason":"PII (Personal Identification Information) found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":188.996,"y":536.39},"width":30.985,"height":10.0905,"page":644}],"sectionNumber":6403,"textBefore":"of Ecotoxicity 3:","textAfter":", Not GLP","comments":null,"startOffset":185,"endOffset":192,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"},{"analysisNumber":14,"type":"REMOVED","dateTime":"2022-05-11T15:04:17.787347Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"67f0834e014176ea4e5fee3ecd11f695","type":"CBI_address","value":"Jealott’s Hill International","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":359.49},"width":116.110016,"height":10.0905,"page":644}],"sectionNumber":6405,"textBefore":"SYN545974 and SYN545547. ","textAfter":" Research, Bracknell,","comments":null,"startOffset":101,"endOffset":129,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618955Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ef859d2c91666f39efe9fe545c130ab","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":287.01},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6405,"textBefore":"GLP Not published. ","textAfter":" File No.","comments":null,"startOffset":240,"endOffset":248,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618956Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80db664ecdb81dd352be37df4624f3c7","type":"CBI_author","value":"Zhang X. Zhang X. Niu Z. Qi Y. Huang D. Zhang Y.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":494.51},"width":54.090996,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":484.19},"width":54.045982,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":473.87},"width":54.118004,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":463.55},"width":54.001,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":453.11},"width":35.037994,"height":10.0905,"page":644}],"sectionNumber":6404,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":63,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618956Z"}],"manualChanges":[],"engines":["RULE"],"reference":["09303e659c0b5d4f15754854d806d553"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5ee60486c56f6611d85eaf337ad68c00","type":"CBI_author","value":"Herwijnen M. Staal Y. Kleinjans J.","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":82.704,"y":754.82},"width":54.081993,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":744.5},"width":18.973,"height":10.0905,"page":644},{"topLeft":{"x":126.966,"y":744.5},"width":9.748001,"height":10.0905,"page":644},{"topLeft":{"x":82.704,"y":734.06},"width":43.57,"height":10.0905,"page":644}],"sectionNumber":6401,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":34,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618958Z"}],"manualChanges":[],"engines":["RULE"],"reference":["5f413c2f07250621164651750c72fc39"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a70378b2a49c2f287a33da0832f7a49e","type":"CBI_address","value":"Syngenta","reason":"Published Information found","matchedRule":18,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":713.42},"width":34.47101,"height":10.0905,"page":644}],"sectionNumber":6401,"textBefore":"Not GLP published ","textAfter":" File No","comments":null,"startOffset":86,"endOffset":94,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618958Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":["5f413c2f07250621164651750c72fc39"],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b89a6004586686a1c900931f65220b30","type":"CBI_address","value":"RG42 6EY","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":338.85},"width":42.490005,"height":10.0905,"page":644}],"sectionNumber":6405,"textBefore":"Research, Bracknell, Berks ","textAfter":". Laboratory Report","comments":null,"startOffset":157,"endOffset":165,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618958Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad2e9b4d10e80e6bc188448902e763c1","type":"CBI_address","value":"Syngenta Syngenta - Jealott’s Hill, Bracknell, United Kingdom,","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":234.77997},"width":34.47101,"height":10.0905,"page":644},{"topLeft":{"x":181.94,"y":224.46002},"width":116.170105,"height":10.0905,"page":644},{"topLeft":{"x":181.94,"y":214.02002},"width":103.38699,"height":10.0905,"page":644}],"sectionNumber":6406,"textBefore":"Concerning Immunotoxicity Potential ","textAfter":" Not GLP","comments":null,"startOffset":98,"endOffset":160,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618958Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0a50041c7ad4018bb3ee85ae3799d3b7","type":"CBI_address","value":"Syngenta Syngenta - Jealott’s Hill, Bracknell, United Kingdom,","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":515.75},"width":34.47101,"height":10.0905,"page":645},{"topLeft":{"x":181.94,"y":505.43},"width":116.170105,"height":10.0905,"page":645},{"topLeft":{"x":181.94,"y":495.11},"width":103.357025,"height":10.0905,"page":645}],"sectionNumber":6411,"textBefore":"in Mammalian Species ","textAfter":" Not GLP","comments":null,"startOffset":108,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618959Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25075d03f780447b4faad5bbe44086f0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":661.22},"width":34.47101,"height":10.0905,"page":645}],"sectionNumber":6410,"textBefore":"Activity In Vitro ","textAfter":" Leatherhead Food","comments":null,"startOffset":91,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618959Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3991cf1ff83ac81f47146ec0e1fbbd08","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":599.06},"width":34.47101,"height":10.0905,"page":645}],"sectionNumber":6410,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":181,"endOffset":189,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bd40cd76f29e01e1c9e67ced5ae65c43","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":179.31306,"y":411.69},"width":34.36302,"height":10.0905,"page":645}],"sectionNumber":6413,"textBefore":"providing access to ","textAfter":" specific know-how","comments":null,"startOffset":367,"endOffset":375,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f15118abcd68d68ea5b7ff0062bab334","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":713.42},"width":34.47101,"height":10.0905,"page":645}],"sectionNumber":6409,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":51,"endOffset":59,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f2eaeb83f4512e589525ccc37ff4395","type":"CBI_address","value":"Surrey, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":230.98999,"y":754.82},"width":27.225983,"height":10.0905,"page":645},{"topLeft":{"x":281.58798,"y":754.82},"width":13.995972,"height":10.0905,"page":645}],"sectionNumber":6409,"textBefore":"(LFR), ","textAfter":", 5522/1/2/2014 GLP","comments":null,"startOffset":7,"endOffset":17,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c5e07d3e916e2c909581a16afce72db","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":435.54312,"y":422.15},"width":34.354004,"height":10.0905,"page":645}],"sectionNumber":6413,"textBefore":"information might undermine ","textAfter":"’s commercial interests","comments":null,"startOffset":312,"endOffset":320,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c8dee707c808d90e3ccac0375c5abd0","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":68.423996,"y":422.15},"width":34.58799,"height":10.0905,"page":645}],"sectionNumber":6413,"textBefore":"25, 1-5 *","textAfter":" requests data","comments":null,"startOffset":211,"endOffset":219,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aad1fa0a15c26f38ef9b8a5e34dc75b4","type":"CBI_author","value":"Green R.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":557.15},"width":33.472,"height":10.0905,"page":645}],"sectionNumber":6411,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b9d8a99e4fe799ed3d432f6aa3f9e9e","type":"CBI_address","value":"Syngenta","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":464.03},"width":34.47101,"height":10.0905,"page":645}],"sectionNumber":6411,"textBefore":"GLP not published ","textAfter":" File No","comments":null,"startOffset":193,"endOffset":201,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61896Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"63f6d35ea0e84c6df855627988b48a4b","type":"CBI_author","value":"Lake B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":82.704,"y":692.18},"width":29.385994,"height":10.0905,"page":645}],"sectionNumber":6410,"textBefore":null,"textAfter":null,"comments":null,"startOffset":15,"endOffset":22,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618961Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de05334ad963a9957f8d14d945b95cdb","type":"CBI_address","value":"Leatherhead Food Research (LFR), Surrey, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: B.6.10. REFERENCES RELIED ON","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":181.94,"y":650.78},"width":115.966,"height":10.0905,"page":645},{"topLeft":{"x":181.94,"y":640.46},"width":25.677979,"height":10.0905,"page":645},{"topLeft":{"x":230.98999,"y":640.46},"width":27.225983,"height":10.0905,"page":645},{"topLeft":{"x":281.58798,"y":640.46},"width":13.995972,"height":10.0905,"page":645}],"sectionNumber":6410,"textBefore":"In Vitro Syngenta ","textAfter":", 5523/1/2/2014 Not","comments":null,"startOffset":100,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618961Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"192e1dc23ac55e03629ca25a72b31b8d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":193.6,"y":480.0},"width":335.4,"height":-10.0,"page":257},{"topLeft":{"x":193.6,"y":469.7},"width":101.7,"height":-10.0,"page":257}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618961Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ab459de73837b73ee6894422eef5c90a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":466.5,"y":290.0},"width":36.7,"height":-12.2,"page":260}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618961Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"13abdc3fbc097cab3a4c7d4eb909d1b6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.5,"y":249.1},"width":30.8,"height":-11.0,"page":260}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618961Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"65bc858d24c644df38486365b7496d71","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":186.8,"y":237.7},"width":324.7,"height":-11.0,"page":260},{"topLeft":{"x":133.8,"y":226.2},"width":128.7,"height":-11.0,"page":260}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618962Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1c9721a707d323d931eee81db0a9faf7","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":210.1,"y":707.0},"width":279.3,"height":-10.0,"page":262},{"topLeft":{"x":210.1,"y":696.7},"width":160.2,"height":-10.0,"page":262}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618962Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c76cd7f25e1bb43cc33c2326af9d7036","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":183.6,"y":562.4},"width":83.9,"height":-12.2,"page":8}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618962Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"548fd1602ae16c2dca4c0d760704ec0e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":400.6,"y":588.0},"width":39.3,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618962Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b27708b8e642e0e4166561ad54feadd2","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":437.4,"y":577.6},"width":36.1,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618962Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d4d152d53700c389846573bfa41746a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":400.6,"y":566.6},"width":39.3,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618962Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2288b58f72fff0070bf43a5b4b61ef14","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":437.4,"y":556.5},"width":36.1,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618963Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e1d65585c7953dec87844ae99d6e93f6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":460.9,"y":546.2},"width":27.2,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618963Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"05c97e02b379fed5df5c68f28cba00d0","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":460.9,"y":502.6},"width":20.5,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618963Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b0e6feebea7d8efaa5ee21555d692f9c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":406.5,"y":524.0},"width":39.5,"height":-10.0,"page":9}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618963Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5e55c0531f8400bea38076e6ed2b47d2","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":466.5,"y":305.9},"width":39.4,"height":-12.2,"page":265}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618963Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1adad9855020a004f698fff58c520a99","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":369.3,"y":373.7},"width":95.9,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618963Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a9740e70e2f286c02a8d2f80cc65ad6b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":367.6,"y":337.6},"width":34.6,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"70b1eb7da8f57e842e3953789d0fe63e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":365.7,"y":312.3},"width":33.9,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"135d12ac5778f8487e6fa96bdd3c17e4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":364.8,"y":286.8},"width":74.4,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dfae659fa07833869b9ac7813196fa31","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":364.8,"y":251.2},"width":105.0,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62df68982bdb81b39f50311af033793e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":364.8,"y":215.4},"width":66.6,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"33c34aca21bb2afee8c72f36764001d7","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":364.8,"y":179.4},"width":66.6,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ae08bd2e7183c6a6bac054e2d9ed8bbc","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":363.1,"y":143.8},"width":109.2,"height":-10.0,"page":10},{"topLeft":{"x":362.4,"y":133.3},"width":42.4,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618964Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"59db05cd898c7e18950f75f4dadc6b0c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":363.1,"y":108.0},"width":28.3,"height":-10.0,"page":10}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618965Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a816db26642826f727adc9239c9aa73b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":309.6,"y":551.8},"width":50.9,"height":-12.2,"page":11}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618965Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"58604a6afc3208e98cf887ace487e613","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":244.5,"y":481.7},"width":59.4,"height":-12.2,"page":11}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618965Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"85509cbc24bf730b20a08797949c3300","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":100.0,"y":424.4},"width":99.4,"height":-12.2,"page":11}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618965Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"89c48f12d04d39d041138cea2fc17e64","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":103.7,"y":341.6},"width":92.1,"height":-12.2,"page":11}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618965Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"97ecbc7ef3121595b3873be21251212e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":656.1},"width":47.6,"height":-10.0,"page":267}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618966Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9748cda0329800811143ef1df41e7aa4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":643.6},"width":49.7,"height":-10.0,"page":267}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618966Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aac0aa67091e8d641d3be65d6c82c528","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":486.4},"width":45.3,"height":-10.0,"page":267}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618966Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62536a054de0165bc7df99f73e6c949f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":473.9},"width":51.9,"height":-10.0,"page":267}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618966Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cbdcd20ece45ac6fa335a4656be26300","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":589.5},"width":42.4,"height":-10.0,"page":268}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618966Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"349964ee2bfbbad30449d0a0f81344ff","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":577.1},"width":18.6,"height":-10.0,"page":268}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618966Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"da162296bba18270c3a3d1586485e366","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":132.6,"y":577.1},"width":18.5,"height":-10.0,"page":268}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618967Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c9533194a9ee6770d4904ede3ceb84bf","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":292.7},"width":33.2,"height":-10.0,"page":268}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618967Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"162a9dc999d23d6e41be27660f860d71","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":280.3},"width":20.8,"height":-10.0,"page":268}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618967Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f1c317d97b88011b17ee746f559a1585","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":132.6,"y":280.3},"width":18.5,"height":-10.0,"page":268}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618967Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"59ddac70a663263d0f05f5cb3386a514","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":199.6,"y":309.3},"width":120.9,"height":-11.0,"page":13}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618967Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5955193fc4955c861b6610cc62ef3bd2","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":336.4,"y":286.2},"width":189.4,"height":-11.0,"page":13},{"topLeft":{"x":133.8,"y":274.7},"width":394.7,"height":-11.0,"page":13},{"topLeft":{"x":133.8,"y":263.2},"width":47.8,"height":-11.0,"page":13}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618967Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"16b16641bd7149d0c6ae4af87bc07248","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":190.4,"y":761.9},"width":50.2,"height":-11.0,"page":269}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618968Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e35348091672e43ce65e57fd05e21704","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":310.6,"y":750.3},"width":212.6,"height":-11.0,"page":269},{"topLeft":{"x":135.6,"y":738.8},"width":113.3,"height":-11.0,"page":269}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618968Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b1949cf2951736f43847b6e4e91f010c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":202.5,"y":696.2},"width":59.7,"height":-11.0,"page":269}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618968Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2880d41e6a1d1342ac86ed487e7a7fab","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":265.1,"y":684.7},"width":170.8,"height":-11.0,"page":269}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618968Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"72b65243b91e10acae06764dfa8cfcf0","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":712.5},"width":169.7,"height":-10.0,"page":271}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618968Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4717f517b48d0ce40def4d0705a992c2","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":188.2,"y":659.1},"width":49.7,"height":-10.0,"page":17}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618968Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3cad0c7a79012a525b80f0b352510421","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":367.0,"y":297.9},"width":129.3,"height":-12.2,"page":25}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618969Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f8b32c453126e8061e41dfa1a2060a33","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":204.1,"y":247.2},"width":40.1,"height":-11.0,"page":25}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618969Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9ac9fbc70b27445791a0adf8296d54d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":175.2,"y":224.2},"width":286.1,"height":-11.0,"page":25}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618969Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8c6351fb3e63ddda87ca4da3acc1cd4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.5,"y":413.9},"width":76.3,"height":-10.0,"page":28}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618969Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0a9585d1e82fabe4d268046638433edf","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":214.2,"y":600.2},"width":72.1,"height":-12.2,"page":30}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618969Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"abbb916d4396741f92c99fb7d54fc209","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":445.2,"y":241.1},"width":58.1,"height":-12.2,"page":286}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8b2221ae3cef06bb83aa6f3686f7969e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":191.0,"y":187.1},"width":51.5,"height":-11.0,"page":286}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"833da622b25415a61605052b30517688","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":275.3,"y":175.6},"width":236.2,"height":-11.0,"page":286},{"topLeft":{"x":133.8,"y":164.1},"width":111.4,"height":-11.0,"page":286}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"49ba885f38b21be3a7fcb5fd07a0a197","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.5,"y":521.7},"width":169.7,"height":-10.0,"page":288}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"66671580996a65084aff717709cf9d36","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":453.6,"y":676.8},"width":40.1,"height":-12.2,"page":38}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"04364b0fceec2caa8c2422e8ce4debf0","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":199.7,"y":613.4},"width":38.0,"height":-11.0,"page":38}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e0eceb7a58471f80f2772e2be8d953ab","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":481.3,"y":602.0},"width":30.6,"height":-11.0,"page":38},{"topLeft":{"x":133.8,"y":590.5},"width":240.3,"height":-11.0,"page":38}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61897Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2e652cb53cfe2227065f5c1840fd42d6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":440.2,"y":579.3},"width":55.4,"height":-12.2,"page":296}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"df9df163f9e954e85e9882b1e6f27775","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.5,"y":606.8},"width":76.3,"height":-10.0,"page":41}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"01a2e9c414c4e8037739b0a5baf50459","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":163.3,"y":75.1},"width":29.7,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"63235611dfc1a040a028cb1c6d39fae6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":218.1,"y":75.1},"width":39.3,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2e33dbd0a1d9f9417e999b72e40c3ec2","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":398.2,"y":85.4},"width":34.2,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"02aed351ab3fb76b30a3edcc2bcabd4b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":458.1,"y":85.4},"width":27.4,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b5eb00d95a38b8bd4dc79b88c2b20873","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":291.0,"y":130.3},"width":27.5,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618971Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4726fc285dc4de3d7fc21bb8a7ec14cc","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":284.8,"y":211.0},"width":25.0,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618972Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"54ad00f3c9e8b6cb6512b3be46266652","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":428.4,"y":308.9},"width":24.9,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618972Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e21ec40a97f69eed2c58db4f4f0ddf28","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":457.9,"y":375.4},"width":19.6,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618972Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aa39a6c6d4b25c4afc2ecff64a91b53d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":163.3,"y":364.9},"width":22.2,"height":-10.0,"page":302}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618972Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c6c2af7fb963236aac666fc7b10bf033","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":186.2,"y":685.4},"width":39.2,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618972Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8aa500a6988f62f1b95af97de1d70b73","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":480.9,"y":695.7},"width":27.4,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618972Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b40f20abd769ea5b18c689e8ec22f49c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.6,"y":726.2},"width":27.5,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618973Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7b4bf6ed0e0a62ca06dd4986044285de","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":268.3,"y":726.2},"width":39.2,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618973Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"96bb9c7fbd10b748709090f014351d9d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":235.3,"y":641.8},"width":20.3,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618973Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"28be8746bb95c8b43eb174cdbbcef34e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":289.6,"y":641.8},"width":27.1,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618973Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"58ac67c247f88aff5965bad4be5306fd","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":346.9,"y":641.8},"width":36.2,"height":-10.0,"page":303}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618973Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a962d8da1c1f21e74e6ba4aa46784fd1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":434.5,"y":108.9},"width":46.6,"height":-12.2,"page":48}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618973Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b680e7e6dc274c7beb45da0c554c9878","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":200.3,"y":760.2},"width":104.7,"height":-11.0,"page":49}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b264232d7bf9f19a12ad6fc601bd7240","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":242.7,"y":737.3},"width":269.7,"height":-11.0,"page":49}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"95c386141d8c4f83a77672bf730bda62","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":188.6,"y":452.0},"width":44.5,"height":-11.0,"page":305}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f68e70bb00a272aae161a62bf4e55b7c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":245.7,"y":440.5},"width":257.1,"height":-11.0,"page":305},{"topLeft":{"x":133.8,"y":428.9},"width":130.1,"height":-11.0,"page":305}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"009b906459409269ced22f96e586254c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":214.9,"y":604.3},"width":84.8,"height":-11.0,"page":51}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"75f07b9f8fc663c43cc3a360963d1058","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.5,"y":721.4},"width":283.5,"height":-10.0,"page":307}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e33154bb87ede1c0e972fdb83daa4ef6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":153.0,"y":408.4},"width":347.7,"height":-12.2,"page":307}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618974Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"40c2878ae399479331f9b667a9593664","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":214.2,"y":699.6},"width":69.3,"height":-12.2,"page":53}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618975Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cbdc9c2267b5cd9f6ad97ed1828031f9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":451.3,"y":188.7},"width":49.2,"height":-12.2,"page":310}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618975Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"597309b48f45c533ed5de7dd23892750","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":386.7,"y":60.1},"width":106.9,"height":-12.2,"page":57}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618975Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bcb7b51fd3158051d0809269b62d90c8","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":195.9,"y":710.3},"width":118.8,"height":-11.0,"page":58}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618975Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f50eb3fa55bde4631d51047d9352a39a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":239.1,"y":698.0},"width":208.9,"height":-11.0,"page":58}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618975Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"009bb2de637a0cf4b70339d6c21e47c9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":236.6,"y":539.9},"width":44.4,"height":-12.2,"page":58}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618975Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5fb05709616c835adf85676c4582726e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":64.0,"y":527.2},"width":118.4,"height":-12.2,"page":58}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618976Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7ceb29030b0009a8759b49a3ff69c4dd","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":354.5,"y":441.4},"width":43.2,"height":-12.2,"page":60}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618976Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"33f12c5a4e8117cdf0f45259ba5807a1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":175.0,"y":428.8},"width":45.6,"height":-12.2,"page":60}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618976Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2d99c31ae30df87029788778906ca7b1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":309.7,"y":647.9},"width":55.0,"height":-12.2,"page":61}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618976Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"aafd4ae97d0c5b9a08b32df5bd8f0405","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":188.6,"y":737.3},"width":36.8,"height":-11.0,"page":323}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618976Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"28dce45b0f1897c4ca7692e0e1e7c8fd","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":166.0,"y":714.2},"width":333.2,"height":-11.0,"page":323},{"topLeft":{"x":133.8,"y":702.7},"width":54.3,"height":-11.0,"page":323}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618976Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"465fb12931bc14093a245363539e67ee","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":258.4,"y":638.3},"width":97.6,"height":-12.2,"page":323}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bf969ed1136b085a42193e481525e780","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":459.8,"y":400.7},"width":43.4,"height":-12.2,"page":329}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3afd69261076ad469a064a7c71558952","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":77.4},"width":43.5,"height":-10.0,"page":330}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"81a6cec731c08b127131d94dd42bf54f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":718.9},"width":29.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"db0fc0b28eadca747513eb18540988e6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":372.4},"width":38.3,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"522d284dbad5e2fb8a5edce15c9fe9d8","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":359.9},"width":29.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d814c5c981843c98fbe2f764af64bf06","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":311.9},"width":32.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618977Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4d5129e39ba7711a84136003952011ae","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":301.6},"width":29.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c7b558f65121b8e1cf0bd8745328b796","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":220.8},"width":25.9,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1403e2261bdf046f6d156de58f958e4e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":208.3},"width":29.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"244cf5e2d3cf737b88195355688fab96","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":113.5},"width":9.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8632425ef077a3c2904c3ca7fa725e7","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":83.0,"y":113.5},"width":4.5,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"786755af9bcf38edc6114338654cb1b1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":78.6,"y":113.5},"width":16.8,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e0ddfe1e984e5a6da3ff756b7c73fa48","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":101.0},"width":29.1,"height":-10.0,"page":331}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618978Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7fa481b3f7818bf0083739897994e8d4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":207.2,"y":460.7},"width":56.2,"height":-11.0,"page":332}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4cd49894037d140cee0d937d6321c362","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":321.9,"y":449.2},"width":189.6,"height":-11.0,"page":332},{"topLeft":{"x":133.8,"y":437.7},"width":124.5,"height":-11.0,"page":332}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"09d92c88379113d282ca711de6c5591f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.4,"y":421.1},"width":230.8,"height":-10.0,"page":334}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d1ffa8b06b65b3dab46dca59a48c9db9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":366.7,"y":764.7},"width":131.0,"height":-12.2,"page":91}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2b2e3f84a4e45f95ceff5c40ee4f1987","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.9,"y":701.6},"width":93.2,"height":-11.0,"page":91}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"69247ec81547010b5b0efde42856f07c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":463.9,"y":690.5},"width":60.4,"height":-11.0,"page":91},{"topLeft":{"x":134.7,"y":678.9},"width":209.1,"height":-11.0,"page":91}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"42f40ed864ec093fe294a168822ea385","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":232.6,"y":464.9},"width":101.5,"height":-10.0,"page":93}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"be931ca8a7122bdbf27475be3e43b6cf","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":446.4,"y":364.1},"width":56.8,"height":-12.2,"page":352}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618979Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"39850138f56a0cd246253cd27fb4e44e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":203.8,"y":300.9},"width":43.7,"height":-11.0,"page":352}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61898Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2aff36b8d07356137fe78afd5ca3c528","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":450.5,"y":289.4},"width":71.6,"height":-11.0,"page":352},{"topLeft":{"x":133.8,"y":277.8},"width":233.6,"height":-11.0,"page":352}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61898Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0689717386c00c9d8d289f0781fb211d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.0,"y":235.2},"width":48.4,"height":-11.0,"page":352}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61898Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62a2ac733bf0935fb6f294b0661d4cdb","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":266.2,"y":223.7},"width":170.4,"height":-11.0,"page":352}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61898Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"34aec46105d29c5c996fa610827a69b3","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":187.7,"y":734.5},"width":233.2,"height":-10.0,"page":354}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61898Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"14b6ed2ca6b3671b95c17138ddbd5f8b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":396.4,"y":359.9},"width":97.1,"height":-12.2,"page":99}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618981Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d9f7671add1827b747cc587bc3ae617e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.9,"y":258.6},"width":90.7,"height":-11.0,"page":99}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618981Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0e1d0986851933ce5ed326af5f816993","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":134.7,"y":235.9},"width":270.2,"height":-11.0,"page":99}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618981Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"66bbe846f8005fbb05543c87ef95c66a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":232.6,"y":307.3},"width":101.5,"height":-10.0,"page":101}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618981Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f600033f970465d63c6a57660d315614","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":455.5,"y":281.4},"width":44.9,"height":-12.2,"page":358}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618981Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0436547ff4245e057936ddca02cad0ee","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.1,"y":217.1},"width":40.6,"height":-11.0,"page":358}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618981Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3b35e9b5ceb2b7c7bcbc405ef558fa9e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":209.0,"y":205.7},"width":306.0,"height":-11.0,"page":358},{"topLeft":{"x":133.8,"y":194.2},"width":37.8,"height":-11.0,"page":358}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ec1a6012c5daa76ffdb358f023e7a18d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":232.3,"y":151.5},"width":2.5,"height":-11.0,"page":358}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"165dc4660607cb093870581d382a7581","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.4,"y":151.5},"width":35.9,"height":-11.0,"page":358}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"994e60a0b4f84a8c02767f09d01249f9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":179.3,"y":140.1},"width":170.1,"height":-11.0,"page":358}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"88da8bdb529beacd15c120c4fac8232c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":533.7},"width":207.8,"height":-10.0,"page":360}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"49fc3bf45d5936d5dea17e18314dec18","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":391.5,"y":549.7},"width":99.9,"height":-12.2,"page":106}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"2b65ff3c4727f6f50d7318f961b5268c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.0,"y":497.3},"width":190.4,"height":-11.0,"page":106}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b3e6b094bf79a1524c679c6a9aa420a8","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":309.1,"y":473.6},"width":216.4,"height":-11.0,"page":106},{"topLeft":{"x":133.8,"y":462.1},"width":173.2,"height":-11.0,"page":106}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618982Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"825daf1c487b1623704dccdbf98b048c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":220.1,"y":438.9},"width":76.3,"height":-10.0,"page":109}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b75e23142bb808d3cbde69b81ef066e9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":461.0,"y":683.5},"width":45.0,"height":-12.2,"page":369}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"79208f147699a7595ff18a246229bc75","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":207.3,"y":618.0},"width":36.5,"height":-11.0,"page":369}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e7e3397062932360184b97bb7f28eb6a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":451.2,"y":606.5},"width":71.2,"height":-11.0,"page":369},{"topLeft":{"x":133.8,"y":595.0},"width":288.5,"height":-11.0,"page":369}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d8b74359bf8897337a376bd79b391ea","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":386.4},"width":290.7,"height":-10.0,"page":370},{"topLeft":{"x":211.6,"y":376.1},"width":127.2,"height":-10.0,"page":370}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a54e33a6e50fd0a6610ca8284d0aece4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.1,"y":648.0},"width":28.5,"height":-11.0,"page":376}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1ebf96014c764b7ac6f5576c66406c51","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":216.3,"y":636.5},"width":281.8,"height":-11.0,"page":376},{"topLeft":{"x":133.8,"y":625.1},"width":67.5,"height":-11.0,"page":376}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618983Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"212f4ad30e0b1d8ef84f2b9ab2572a6b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":460.4,"y":689.5},"width":35.3,"height":-12.2,"page":376}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d53d627931b5838bf4ea354fd6f74492","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":419.8},"width":290.7,"height":-10.0,"page":377},{"topLeft":{"x":211.6,"y":409.3},"width":127.2,"height":-10.0,"page":377}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9e04b4475e1dfe62de749d25cc765a9a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":134.2,"y":259.3},"width":36.5,"height":-12.2,"page":380}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"578af0654ffd36a213c43f1ca5b41bd5","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":463.5,"y":410.0},"width":37.1,"height":-12.2,"page":384}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"755a2f07bf10a7b337f8b99d685d91c0","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":198.8,"y":344.0},"width":37.6,"height":-11.0,"page":384}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c9938daba74e3634d6a8bf5c145b433f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":376.0,"y":332.4},"width":146.0,"height":-11.0,"page":384},{"topLeft":{"x":133.8,"y":320.9},"width":194.2,"height":-11.0,"page":384}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"53ebadcbf43f4282dd999f90247079db","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":141.4,"y":641.0},"width":28.2,"height":-11.0,"page":385}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618984Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b74e7b947a500521aa5fcfc047a3b4f5","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":296.1,"y":250.1},"width":207.1,"height":-12.2,"page":130}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618985Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dff1ba17f81cadd46165462755fa7ec9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":456.7,"y":248.8},"width":46.6,"height":-12.2,"page":386}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618985Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f1296b8c6022804fcf068dd6b7f579d4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":209.8,"y":736.9},"width":30.9,"height":-11.0,"page":131}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618985Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"637b7c541ccae9efd352bc166586e742","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":333.4,"y":725.7},"width":177.6,"height":-11.0,"page":131},{"topLeft":{"x":147.6,"y":714.2},"width":214.2,"height":-11.0,"page":131}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618985Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6895f7ca06f101c22921ae3bfe991f97","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":607.9},"width":35.6,"height":-10.0,"page":387}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618985Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"88b866a0ef9cce70e245dd374d5ad031","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":585.2},"width":24.4,"height":-10.0,"page":387}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618985Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"103611d2fd7958ed7d4ccc62cc490e96","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":323.7},"width":33.4,"height":-10.0,"page":387}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d48683f32be54fdaffa21feb8969d52f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":301.0},"width":24.4,"height":-10.0,"page":387}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"766657ce0ee778697ea95f6e2113b584","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":331.0,"y":765.3},"width":102.1,"height":-12.2,"page":387}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f45f8c21dc7cfea0bb941953b132f621","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":223.1,"y":730.3},"width":275.8,"height":-10.0,"page":132},{"topLeft":{"x":223.1,"y":720.0},"width":187.4,"height":-10.0,"page":132}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"78e96defa3c85287bd06711deb3e5d74","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":198.0,"y":690.1},"width":37.8,"height":-11.0,"page":388}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6f3fe6ae700c079e534851d774fa6d9b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":320.0,"y":678.6},"width":202.0,"height":-11.0,"page":388}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9d8126a49ed3e71c82e171e88b71c22a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":548.6},"width":276.2,"height":-10.0,"page":389}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618986Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a189e28bae5b487d7efde33ebdc8c2e7","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":468.9,"y":681.2},"width":31.6,"height":-12.2,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618987Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"30e7413ad870521200a6854288f66813","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":295.9,"y":316.8},"width":64.6,"height":-10.0,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618987Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7783f30643518024bfe21c54f1cec339","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":295.9,"y":295.5},"width":64.6,"height":-10.0,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618987Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"bc99ed23794c6a802fa81a6a3775061a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":314.1,"y":274.3},"width":30.3,"height":-10.0,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618987Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e3450dd67002b6ed94db2e287dc2768d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":299.8,"y":253.0},"width":56.8,"height":-10.0,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618987Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"766fd76a3f78e838beda5a1ad2d84240","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":297.8,"y":231.6},"width":59.1,"height":-10.0,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618987Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d19ccc1828ee336c21bab2fccd14987d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":310.6,"y":210.4},"width":39.7,"height":-10.0,"page":137}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618988Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"62a2b430cbf2b8bfe0683b585c291236","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":193.6,"y":725.6},"width":71.9,"height":-11.0,"page":138}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618988Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed4f3b353a0a49c1841732c008e3c6df","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":258.5,"y":714.1},"width":183.1,"height":-11.0,"page":138},{"topLeft":{"x":131.4,"y":702.6},"width":110.1,"height":-11.0,"page":138}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618988Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e71bc90e2dc89fbdc0c8a91692d3b241","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":459.7,"y":208.7},"width":40.6,"height":-12.2,"page":394}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618988Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d8800c7155d9d354aac0451b1e5a99c9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":202.3,"y":121.2},"width":40.0,"height":-11.0,"page":394}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618988Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9c9507c1edc0c9592d1d85510e3ab196","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":421.7,"y":109.8},"width":100.5,"height":-11.0,"page":394},{"topLeft":{"x":133.8,"y":98.3},"width":87.4,"height":-11.0,"page":394}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618989Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d8ea05b8c0e4dea4fb333d44e755c82c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":206.9,"y":676.4},"width":312.5,"height":-10.0,"page":139},{"topLeft":{"x":206.9,"y":666.1},"width":67.7,"height":-10.0,"page":139}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618989Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"359f15f7b41bee2749f5fd7bda7ef3b6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":417.6,"y":500.7},"width":82.9,"height":-12.2,"page":140}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618989Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dcb8e4dfed7e39264941dce18dba94a5","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.0,"y":437.5},"width":71.9,"height":-11.0,"page":140}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618989Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"54bcff776fc7c22a57d174ffb6143758","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":154.0,"y":425.9},"width":293.3,"height":-11.0,"page":140}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618989Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d9bf466bf9a48d58cebdf4a48cf7ff1b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.4,"y":587.2},"width":272.7,"height":-10.0,"page":396}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618989Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5c9c55e9ac2d001e1bba3d98f40939de","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":467.6,"y":587.2},"width":22.1,"height":-10.0,"page":396}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61899Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"44c768a450d658a87306231b32821ed5","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":206.9,"y":355.6},"width":312.5,"height":-10.0,"page":141},{"topLeft":{"x":206.9,"y":345.3},"width":69.7,"height":-10.0,"page":141}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61899Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"61e703881be5cee17f8061c3d0b60776","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":421.3,"y":176.3},"width":79.2,"height":-12.2,"page":142}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61899Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e7f1368136a80f4a8008ead1b84225ae","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":193.0,"y":712.4},"width":31.1,"height":-11.0,"page":143}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61899Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ea93d8db910c8d2ad12cefb3f9c1df10","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":174.5,"y":701.0},"width":295.6,"height":-11.0,"page":143}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61899Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f64b099ebac01e9c79f47d2c4b55b329","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":189.2,"y":232.7},"width":333.8,"height":-10.0,"page":144},{"topLeft":{"x":189.2,"y":222.4},"width":76.2,"height":-10.0,"page":144}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61899Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3ccaa0d63a8fcce0cb6c8ac8293459cc","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":451.2,"y":169.1},"width":49.9,"height":-12.2,"page":400}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618991Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b27249f26fc2a5b6c96c0de3be9c2c3e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":465.9,"y":289.8},"width":37.2,"height":-12.2,"page":147}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618991Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ce4f0b597f185c04c411b0139cefb542","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.1,"y":213.4},"width":62.9,"height":-11.0,"page":147}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618991Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e2fbe8d2556cf6d0e346f9baf9691247","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":169.3,"y":202.0},"width":288.2,"height":-11.0,"page":147}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618991Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"af1de44bcfc821c956057dd3d7b13bdc","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":189.1,"y":268.3},"width":188.2,"height":-10.0,"page":148}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618991Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"92f1c46928c4113ada300ca7801d4947","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":423.8,"y":683.9},"width":82.2,"height":-12.2,"page":150}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618991Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"27ca78670bb5b6a05151929f589a88d1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":194.1,"y":595.4},"width":63.1,"height":-11.0,"page":150}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"45fb2f3376a7f923635fcd93e5b71235","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":131.9,"y":583.9},"width":288.2,"height":-11.0,"page":150}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"716e7ffe688abb5e69f4e0cdd448cd40","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":206.9,"y":492.2},"width":195.6,"height":-10.0,"page":151}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"232a00448576ee37c54c18f924839011","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":422.5,"y":304.8},"width":75.8,"height":-12.2,"page":152}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3e9041e64dcc53c2563d36d507e7c49f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":195.3,"y":216.9},"width":41.5,"height":-11.0,"page":152}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ecc6d60fe734fbffb217a750ea8fb28a","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":133.0,"y":205.5},"width":290.6,"height":-11.0,"page":152}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7080f315fae834b5eedba6874d55d536","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":216.8,"y":58.8},"width":57.1,"height":-10.0,"page":153}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618992Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a6b94a5efcd52e1e017ccf6c4bc09af4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":457.4,"y":468.8},"width":48.5,"height":-12.2,"page":156}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d83e1d7a626eba4280d2e1d4e60285c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":696.8},"width":38.0,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e3cf36b61ba13c6ba92e6bcda029b5bc","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":93.6,"y":686.5},"width":29.7,"height":-10.0,"page":163},{"topLeft":{"x":69.5,"y":676.2},"width":22.2,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"201ccdbede6e8e1318ab3f4904c47d1b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":628.3},"width":35.5,"height":-10.0,"page":163},{"topLeft":{"x":69.5,"y":617.8},"width":45.3,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"58de3b86d04b6766896be70a69fd68df","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":595.1},"width":17.5,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"dbde82307432e8ab44fd388ac807edb9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":472.5},"width":35.7,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b139d394d87264d9a7b23802396f954e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":99.8,"y":462.2},"width":17.5,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3a4828cf7e4565ae579504d861e1f3f9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":391.5},"width":35.5,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618993Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5b37b142f526f26537a7bbe85155ab91","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":95.9,"y":381.1},"width":17.5,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1d950c771ca0064c1e8ee244ae575279","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":225.5},"width":28.8,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a11fad6e82a5f57874287bebe241b456","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":213.0},"width":29.1,"height":-10.0,"page":163}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cadc8e29e01c19ef8e4c1cae2e6df09d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":714.3},"width":31.0,"height":-10.0,"page":164}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fa21441772123d3bca9059a990553103","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":691.6},"width":29.1,"height":-10.0,"page":164}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a31d0c79ff82d390a65f5b480515105e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":633.4},"width":33.3,"height":-10.0,"page":164}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"91ffd68ff10d97ff368dd2d94c1e144f","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":69.5,"y":610.6},"width":24.4,"height":-10.0,"page":164}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618994Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"24c3c6ed680e304629b1c3f038c10d90","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":195.9,"y":361.7},"width":39.5,"height":-11.0,"page":164}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618995Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5e028432b91eed3836b7c98fda938fe1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":166.5,"y":350.2},"width":209.6,"height":-11.0,"page":164}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618995Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7fe47e8d3fdfa664f16975308b7856c1","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":208.3,"y":509.7},"width":169.7,"height":-10.0,"page":166}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618995Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"7cd806441faf08caaaca4503a4d7c70c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":456.8,"y":427.2},"width":43.7,"height":-12.2,"page":175}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618995Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a1eb515f071fb1d45af1f030535a8ff7","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":203.0,"y":350.4},"width":42.1,"height":-11.0,"page":175}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618996Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e5056ae658b6f413ca1a3dea3fca4bd6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":203.5,"y":339.3},"width":209.2,"height":-11.0,"page":175}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618996Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a446d43ca61a4dbf5d7d16fce2857da3","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":192.1,"y":435.6},"width":169.7,"height":-10.0,"page":177}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618996Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"760cc2079747213190354211d17d4881","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":451.9,"y":269.7},"width":43.7,"height":-12.2,"page":184}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618996Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8ac1d7ec49ad8d2340667d53c1f937b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.1,"y":181.7},"width":108.8,"height":-11.0,"page":184}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618996Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"15f4724a4f3fefc5deecd8ebe9dcf3b9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":475.8,"y":170.2},"width":33.0,"height":-11.0,"page":184},{"topLeft":{"x":133.8,"y":158.7},"width":174.0,"height":-11.0,"page":184}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618996Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a34aeeb600e49cd8c7e84b4046838c5c","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.2,"y":283.3},"width":169.7,"height":-10.0,"page":186}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618997Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ef275e98e92999047262568021cb471b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":466.3,"y":726.8},"width":33.6,"height":-12.2,"page":187}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618997Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"958523a432742baede34477337d1711b","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":96.2,"y":300.2},"width":61.3,"height":-12.2,"page":187}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618997Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"374b6a0fe2cda62f31b0b868b9e1b347","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":379.4,"y":99.9},"width":121.1,"height":-12.2,"page":196}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618997Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0e02b3300de6dc9e73ba5456d27d5fe9","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.6,"y":735.9},"width":39.6,"height":-11.0,"page":197}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618997Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"07781d82534b83d67640c20c56bc43d6","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":417.0,"y":724.4},"width":97.4,"height":-11.0,"page":197},{"topLeft":{"x":133.8,"y":712.9},"width":121.1,"height":-11.0,"page":197}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618997Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cb5e5ac6754544887abef9c8b79890fb","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":318.0},"width":169.7,"height":-10.0,"page":198}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"231024bb54ea2ab6cbacce33859fafc5","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":459.8,"y":664.2},"width":43.4,"height":-12.2,"page":207}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"df210fbf3df3490806402fdc52d1e065","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.1,"y":622.7},"width":31.8,"height":-11.0,"page":207}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f5b4a10a65463b1e3c055f511268c6e8","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":133.8,"y":611.3},"width":351.8,"height":-11.0,"page":207}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"0d282889ac80696451661955d56da7c4","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":213.4,"y":533.7},"width":308.2,"height":-10.0,"page":209},{"topLeft":{"x":213.4,"y":523.2},"width":32.3,"height":-10.0,"page":209}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fbd145f81f88cbcf96fa07156a2d8235","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":465.3,"y":90.2},"width":37.9,"height":-12.2,"page":217}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"206a5228f4a7d6c03844f9a9b2eb20c8","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":198.5,"y":710.1},"width":34.4,"height":-11.0,"page":218}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618998Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d2a6bcdd9e96c624b4eeedeeecd56b3e","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":170.6,"y":698.6},"width":311.6,"height":-11.0,"page":218},{"topLeft":{"x":133.8,"y":687.1},"width":40.1,"height":-11.0,"page":218}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618999Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"a2f3aaafdca5518361ef96b44f0ea173","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":211.6,"y":521.0},"width":276.5,"height":-10.0,"page":219},{"topLeft":{"x":211.6,"y":510.6},"width":32.3,"height":-10.0,"page":219}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618999Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fa664dd5c788b82c6513b9ac4b360281","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":460.4,"y":765.3},"width":40.7,"height":-12.2,"page":226}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618999Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f5e7d55eb8ee83f1a952fb6a683e545d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":198.3,"y":639.9},"width":37.5,"height":-11.0,"page":226}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618999Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"510647b240f693250d0ea08de5b90f25","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":284.0,"y":628.4},"width":227.2,"height":-11.0,"page":226},{"topLeft":{"x":132.4,"y":617.0},"width":50.1,"height":-11.0,"page":226}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618999Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"1b96d57ef7558c1444dc5e738238913d","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":191.5,"y":564.9},"width":260.3,"height":-10.0,"page":227}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618999Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b186a56217421366d8d11955eafec9ff","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":459.8,"y":765.3},"width":40.6,"height":-12.2,"page":232}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e45a7c4cff5e169d465a5e3cd36c5ffa","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":409.0,"y":499.2},"width":27.8,"height":-10.0,"page":233}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5618f4e44e1404ebb30e9d59d7b1acbf","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":409.0,"y":482.9},"width":24.4,"height":-10.0,"page":233}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f6ece11c2b3c7634924aeb023c804152","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":409.0,"y":439.4},"width":24.4,"height":-10.0,"page":233}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e5833d297bae1a6303d61b0f2c82a7c3","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":409.0,"y":455.7},"width":27.7,"height":-10.0,"page":233}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ed02b517389520b009270327e308f705","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":196.3,"y":302.1},"width":30.8,"height":-11.0,"page":255}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"219bf4aac443fbd7aee6040cb3ea3609","type":"imported_redaction","value":null,"reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":true,"redacted":true,"section":null,"color":[0.9411765,0.9411765,0.7529412],"positions":[{"topLeft":{"x":186.8,"y":290.6},"width":324.7,"height":-11.0,"page":255},{"topLeft":{"x":133.8,"y":279.2},"width":124.5,"height":-11.0,"page":255}],"sectionNumber":0,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":0,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.619001Z"}],"manualChanges":[],"engines":null,"reference":null,"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f21afcfbed445ca618a259382ecf82eb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":357}],"sectionNumber":6769,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259753Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787357Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"34d2aba869a922476dedcf0055d237b1","type":"CBI_author","value":"Brown","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":498.48376,"y":477.83},"width":30.98468,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"study (Kitchin and ","textAfter":", 1989). The","comments":null,"startOffset":1463,"endOffset":1468,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618841Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258874Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787357Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"16a991fcff3f4981f284b0ae8be57f62","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":568}],"sectionNumber":6980,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259761Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787358Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c62ef5d17213adfeb392c856cb1c6a47","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":538}],"sectionNumber":6950,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259772Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8702b9e3f24f45efb17301deae9b245e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":247}],"sectionNumber":6659,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259773Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c04ec927a3bd26b140bc946fde93f4f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.53204,"y":586.07},"width":30.772034,"height":10.018499,"page":466}],"sectionNumber":5008,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":46,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259777Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a346a72fb4f384922090eb1d9bcbecfd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":41}],"sectionNumber":6453,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259775Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93d44bd440e3581a6dd0b4d42aa4c983","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: In conclusion, it can be stated that there were DNA strandbreaks observed in stomach, colon, liver,\nkidney, urinary bladder, lung and brain following oral administration of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":338.57202,"y":206.70001},"width":30.772034,"height":10.018499,"page":568}],"sectionNumber":5817,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":25,"endOffset":31,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259779Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78736Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"46e0c43f8b5531de8d3788d5f6b0a2c0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":465}],"sectionNumber":6877,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259782Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787361Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9c07599f72644255773e88bd13288fa","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":101}],"sectionNumber":6513,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259783Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787361Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2c77467d0b3bd3e7e0ad47b9b80cba37","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":552}],"sectionNumber":6964,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259785Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787362Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9510b34a74139d7e49cb6e2d43494868","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":475}],"sectionNumber":6887,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259791Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787362Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9bfc94fc024e1733a3d966ed3464974a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":618}],"sectionNumber":7030,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259793Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787363Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"968a2471a4ba19385be1125191dff256","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":329}],"sectionNumber":6741,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259795Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787363Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"530e1c4e56caa480c576edc8cdae7a7b","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":104.34003},"width":27.970726,"height":11.017679,"page":562}],"sectionNumber":5772,"textBefore":"White cell preparation ","textAfter":" cells were","comments":null,"startOffset":1040,"endOffset":1045,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787264Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c355311919d4ea655ce440c45dd99fde","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":402}],"sectionNumber":6814,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259803Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787364Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a326c61e4b1e569638dd998af13411f9","type":"CBI_author","value":"Lake","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.98,"y":320.49},"width":23.543686,"height":10.929359,"page":622}],"sectionNumber":6235,"textBefore":"driven homogeniser (","textAfter":", 1987). The","comments":null,"startOffset":815,"endOffset":819,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258932Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787365Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e717c5699b2d6de5ef7e35054cc0a494","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":282}],"sectionNumber":6694,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259812Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787366Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ed2b044a22c284ad6fa26bdc798dae4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":640}],"sectionNumber":7052,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25981Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787366Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"352a7b53457e449099733e1fc6a821ec","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":397}],"sectionNumber":6809,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259813Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787366Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"542ded7dedb3a586761ad500545567e1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":54}],"sectionNumber":6466,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259816Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787367Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac5c4e9da3373d0817fc43bc67047a49","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":124}],"sectionNumber":6536,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25982Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787368Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"19cc85dc4e0c8ff8af69c285444ae1a1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":302}],"sectionNumber":6714,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259822Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787368Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b0ae4b65cad74835a3813eda7fb18d7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":612}],"sectionNumber":7024,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259823Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787368Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d8c9cbd0e23936bb61e25d623d058177","type":"CBI_author","value":"Harris J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":158.73886,"y":329.73},"width":40.92061,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"administration (Punler M., ","textAfter":", 2014a). The","comments":null,"startOffset":4694,"endOffset":4703,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618208Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257822Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787368Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4445efb341b6a36a58b8b7d2c8fc24f1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":77}],"sectionNumber":6489,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259828Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787369Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5369d4e3c3aa42af61b7bf51c9b1b276","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":254}],"sectionNumber":6666,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25983Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787369Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"67640390fe4f48ffcefd3793703aca99","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":508}],"sectionNumber":6920,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259831Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787369Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"641ee931b8ee4a27443221dd146f6b3b","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":105.81312,"y":324.57},"width":11.918556,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1433,"endOffset":1435,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860604Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"05ef72261ba4277681418fe02655af6c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":342}],"sectionNumber":6754,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259835Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b2afd20c9705ecce76bc89c08a064f3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":162}],"sectionNumber":6574,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259837Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c4a3ae0e1193a21334f39ddbdfe9823","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":283}],"sectionNumber":6695,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259836Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"11d68c244f3b8a1410f8a6a30471d1bc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":275}],"sectionNumber":6687,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259841Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787371Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f16e9f77dcc019aaedd95826785d159","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":632}],"sectionNumber":7044,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259846Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787371Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d64da3188de5af75593acbf941a55433","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":142}],"sectionNumber":6554,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259847Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787371Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"577f8ceacc4448d0a7521765226472b8","type":"PII","value":"10-13","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":277.2754,"y":728.18},"width":26.774597,"height":11.017679,"page":463}],"sectionNumber":4999,"textBefore":null,"textAfter":null,"comments":null,"startOffset":587,"endOffset":592,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787166Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8fe3eb06bdc8a9dc52c7cc750ff6cd9f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":34}],"sectionNumber":6446,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25985Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787372Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82e876cf48e2e481708b338f7ead5b2a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":624}],"sectionNumber":7036,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259856Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4d7bb2748eece07015f0d721cf9e72c9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":82}],"sectionNumber":6494,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259857Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dcb0a6f567ad9059d5da33c7bf227089","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":592}],"sectionNumber":7004,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259859Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cbf12d29c7beaf7ba6365160f3faa309","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":430}],"sectionNumber":6842,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259864Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787374Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed0fe57ca852fef5fab3af14db3690b3","type":"CBI_author","value":"Harris J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":256.1844,"y":690.74},"width":34.89392,"height":10.526819,"page":91}],"sectionNumber":1354,"textBefore":"Punler M. and ","textAfter":" (2014). SYN545974","comments":null,"startOffset":3198,"endOffset":3207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618291Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.25793Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787374Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f66f2c68578b0c54909934899c7d1b1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":81}],"sectionNumber":6493,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259865Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787374Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bb79cbc4f386380d41847c79252dad9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":179}],"sectionNumber":6591,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259867Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787374Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c65e8fe9f4818e2346da5e2f4187166","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":268}],"sectionNumber":6680,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259872Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787375Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"758c7c205547525bf159609c99bbe51a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":432}],"sectionNumber":6844,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259871Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787375Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1fdf6b0b2c14dde20b6020b484b95c00","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":417.2209,"y":436.43},"width":46.3302,"height":11.017679,"page":13}],"sectionNumber":50,"textBefore":"300 mg/kg/day (","textAfter":" 2015; section","comments":null,"startOffset":12802,"endOffset":12811,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618213Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786787Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b6d6710d53759bbe96ab4be4b46144ce","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":477}],"sectionNumber":6889,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259875Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b6f2b04409c65d294b3cdb8ab6bf1ccd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":47}],"sectionNumber":6459,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259877Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65fb05e696c0e44b1c18dc80e1a4499c","type":"CBI_author","value":"Harris","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Toxicokinetics","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":240.02783,"y":550.55},"width":28.555847,"height":11.017679,"page":8}],"sectionNumber":27,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3222,"endOffset":3228,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.6182Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257804Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"8d05cbb177567b7f57ff6280f5308c37","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":597}],"sectionNumber":7009,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259881Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9025f8fda0a69dca14e9a1e12097f5a4","type":"CBI_author","value":"Punler","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Toxicokinetics","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":183.64653,"y":550.55},"width":29.759216,"height":11.017679,"page":8}],"sectionNumber":27,"textBefore":"oral data (","textAfter":" and Harris","comments":null,"startOffset":3211,"endOffset":3217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618201Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257812Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2ebae44568f37f080320ca1bf053093","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":440}],"sectionNumber":6852,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259892Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787379Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24a167b12b282e81d7bcf9e33e83d79d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":163}],"sectionNumber":6575,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259897Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78738Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93f0313beb01ad18f8484dc751d66367","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":461}],"sectionNumber":6873,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259899Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787381Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0a35a7434a2bee8a47c0f5a7de5b3069","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":630}],"sectionNumber":7042,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259902Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787381Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a0d1cff0d8a8bea635f0a5dbea6e835","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":117}],"sectionNumber":6529,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25991Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787382Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"85d6e9d5c2fa98896164bb9bdcc2698f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":116}],"sectionNumber":6528,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259913Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787383Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a5507979f224d0a07fcd09872d682dde","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":434}],"sectionNumber":6846,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259912Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787382Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"29a74d7c7d9ff5fea7217be7e5ca369e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":46}],"sectionNumber":6458,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259914Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787383Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18aa6c960180dc08bfd8d0604c497a25","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":208}],"sectionNumber":6620,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259916Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787383Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cc0b31107b82104b4b9fbf6e5862c53c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":634}],"sectionNumber":7046,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259917Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787383Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"813bc93ad41cba213ec8e0cbf0fb42ee","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.082,"y":435.47},"width":22.978027,"height":10.0905,"page":377}],"sectionNumber":4126,"textBefore":"New Zealand ","textAfter":null,"comments":null,"startOffset":48,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618608Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787113Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f8021dff9158a5a62e5594821d70e8d8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":259}],"sectionNumber":6671,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259926Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787384Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"403c0d002b5ae2a0af39a29d84b8f4b0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":122}],"sectionNumber":6534,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259927Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787384Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f18dced9d74375197674206a31f3d8c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":619}],"sectionNumber":7031,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259929Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787385Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e072e822fa25fdf809f74102719f4d58","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Draft Assessment Report prepared according to the Commission\nRegulation (EU) N° 1107/2009","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":202.13,"y":297.81},"width":74.258545,"height":15.80514,"page":1}],"sectionNumber":2,"textBefore":"PYDIFLUMETOFEN ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259934Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787385Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aca86cbea1e32e9a7db12e5abee8a782","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":456}],"sectionNumber":6868,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259938Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787386Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"63e16d0942eec09a232b85a22bd9b0a4","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Reproducibility and Consistency","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.81344,"y":59.200012},"width":46.230873,"height":11.017679,"page":300}],"sectionNumber":3307,"textBefore":"with SYN545974 (","textAfter":", 2015). This","comments":null,"startOffset":1514,"endOffset":1523,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618519Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787046Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"927d6ea3c105ff4309b156e04c116c1a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":195}],"sectionNumber":6607,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259941Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787386Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"42099c8bc2e9b25aeb780fc5bb69799f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":352}],"sectionNumber":6764,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259942Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787386Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d493eed7ce5d749908eb48be1990cc56","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":12}],"sectionNumber":6424,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259943Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787387Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8d7961a08bb048e6d4c4728f85ca8fb5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":505}],"sectionNumber":6917,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259945Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787387Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e20cde213a438bde130cbda753d1ab02","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3-1: SYN545974: Summary of Short Term Toxicity Studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":600.62},"width":25.435005,"height":10.0905,"page":164}],"sectionNumber":2150,"textBefore":"Sieber M (2013) ","textAfter":" Report D62072","comments":null,"startOffset":34,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618402Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786953Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da4bf964e720c6caf00767e61c70fdbf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":431}],"sectionNumber":6843,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259948Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787387Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"739e01948d815b497234ab00ff278d78","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":134.66,"y":753.5},"width":27.970718,"height":11.017679,"page":477}],"sectionNumber":5075,"textBefore":"activity session. Haematology: ","textAfter":" blood cell","comments":null,"startOffset":3761,"endOffset":3766,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618668Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787174Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"af5be87805f0732f7d008499731611aa","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":269}],"sectionNumber":6681,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259959Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787389Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"613ada3bbea818572a96dadf29c8f849","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":400}],"sectionNumber":6812,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259967Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cae298096f429f31d11be1880215770d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":617}],"sectionNumber":7029,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259977Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787391Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8448e7778fbf6414b2975fbf497acf31","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":93}],"sectionNumber":6505,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259978Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"90eeec6dea8821c95eae15f7fa6b2efe","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":385}],"sectionNumber":6797,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25998Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea6f01ff7bf70b680962454fdadaf3a7","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test Material (Purity): Not applicable","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":87.49775,"y":239.58002},"width":46.21984,"height":11.017679,"page":624}],"sectionNumber":6241,"textBefore":"3.2.1 (Shearer and ","textAfter":", 2015 and","comments":null,"startOffset":1153,"endOffset":1162,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618894Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787323Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4245505278da4830f34449cd7fb2d714","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":437}],"sectionNumber":6849,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259984Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d5951a75fbeca9988b0352be0c4158ba","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":159}],"sectionNumber":6571,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259986Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"52b1654fb4277f969efb9db17283a1ab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":523}],"sectionNumber":6935,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259987Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c9ec09c032a1c1e632781897f391c2d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":123}],"sectionNumber":6535,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259989Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787393Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cd3a28e109abe2ba73d282b35dc93d51","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":245}],"sectionNumber":6657,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25999Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787393Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e531b5e5c490440d843147b682367cf9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":221}],"sectionNumber":6633,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259992Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787393Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0b25e87f161abe80b25e14286bde9644","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":128}],"sectionNumber":6540,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259994Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787393Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9c5f20d1433cad59955ff659172749a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":154}],"sectionNumber":6566,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787394Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e5035af1d0bad12090039d78b6799c2c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":273}],"sectionNumber":6685,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260002Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787394Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6f24486e787d5329669c481fbba1e592","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":328}],"sectionNumber":6740,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260009Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787395Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a5d992142320f75859a82c96e7b66a61","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":408}],"sectionNumber":6820,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260013Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787395Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4499ed56a02bd9a7ece19f09ea22985f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":526}],"sectionNumber":6938,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260016Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787396Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"043aa8256f78c62b8faa45c823c751fb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":594}],"sectionNumber":7006,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260018Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787396Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c861768db67959ed096a8b4fded738d6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":98}],"sectionNumber":6510,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26002Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787396Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e42d7fb2e3c0000998e8bf920dd0df0d","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MOA Hypothesis for SYN545974-Induced Liver Tumour Formation in the Mouse Carcinogenicity\nData for SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":215.38513,"y":740.9},"width":46.33023,"height":11.017679,"page":297}],"sectionNumber":3281,"textBefore":"mouse, respectively (","textAfter":" 2015a and","comments":null,"startOffset":242,"endOffset":251,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618515Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787043Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e96f83eebde6fb3b39db91ff99dc7967","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.34,"y":548.2},"width":34.196686,"height":10.44714,"page":74}],"sectionNumber":6486,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260023Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787397Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b1d32eb99e9c81d923843c84da69389a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":27}],"sectionNumber":6439,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260024Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787397Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d1496fc320c8e7d2a201030fd2c5acaf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":158}],"sectionNumber":6570,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260029Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787398Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d5e2ec1339de228265e24ea2104a1f8c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":290}],"sectionNumber":6702,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260031Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787398Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cebf2f69ceb67d47cae4087d14208525","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":636}],"sectionNumber":7048,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260032Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787398Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"326ecb1d511f903cffe6a78a1f00b912","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":582}],"sectionNumber":6994,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260039Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787399Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d5e5626a18a61272c697bc9cf86b8b7b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE ....................................................................................................... 626","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":377.95,"y":512.51},"width":36.482544,"height":11.017679,"page":4}],"sectionNumber":15,"textBefore":"be found in ","textAfter":" 1- level","comments":null,"startOffset":1369,"endOffset":1375,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260042Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e1868153d4c56d7018ef1c7b20be0f6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":21}],"sectionNumber":6433,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260043Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92169378be17462c0d1d75179dcb1bee","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":570}],"sectionNumber":6982,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260045Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787401Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"66f9944bdd95e4e7bc5c581ae641bacb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":498}],"sectionNumber":6910,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260057Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787402Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82a74d2df3170b05846ef8022ff54419","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":441}],"sectionNumber":6853,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260059Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f2656a35fb5bb74b7e951d993881e754","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-12: Intergroup comparison of selected haematology parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":646.94},"width":22.978004,"height":10.0905,"page":204}],"sectionNumber":2546,"textBefore":"Distribution Width % ","textAfter":" Blood Cells","comments":null,"startOffset":47,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618436Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786987Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9f473598fccbe71e9c1b9b7cd43ec029","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":140}],"sectionNumber":6552,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260064Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b730de27e60c1040cfbbd863a303594","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":53}],"sectionNumber":6465,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260069Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea8fb8a7fc2448445caced5592aa7af8","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":118.40975,"y":415.17},"width":12.040001,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1646,"endOffset":1648,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860628Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"eb5230b28ab3f2d4e2f30d0eee4c191f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":396}],"sectionNumber":6808,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260076Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787405Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"74f8331a3d92809407cea7b212445eeb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":35}],"sectionNumber":6447,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260081Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787405Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ea47dd520753406297f87fab06923ed","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":8}],"sectionNumber":6420,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260084Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787406Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"58f3c64c1e61511f92c7dbafd8bb6ca0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":438}],"sectionNumber":6850,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260086Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787406Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21605f21458a7e22e54cee9fbf0af85d","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":162.5477,"y":299.25},"width":12.040009,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1653,"endOffset":1655,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860629Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"beefd6a4394acd79c6c5256e8405929d","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.67,"y":585.11},"width":25.435028,"height":10.0905,"page":448}],"sectionNumber":4881,"textBefore":"(2013a). Report No. ","textAfter":" 1555903. Syngenta","comments":null,"startOffset":140,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618654Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787161Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac0f65129032a34e3b86e7c0f90a8eb5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":419}],"sectionNumber":6831,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260086Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787406Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0faf341f4c3899d13e98bd2f43a7c054","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.69205,"y":630.5},"width":30.772034,"height":10.018499,"page":530}],"sectionNumber":5455,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":46,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260088Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787406Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0385304883aaa33466ca3e408fa0cbe0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":524}],"sectionNumber":6936,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260089Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787407Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ce453600a98bb53295611bf0c318c3f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":332}],"sectionNumber":6744,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260095Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787407Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6e31934ade104fc57814da70ce3fd124","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":492}],"sectionNumber":6904,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260098Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787408Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d5fc86c2b521b80499720f55899a4143","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":223}],"sectionNumber":6635,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260099Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787408Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53460301d41205f9a5f12d2ede89d68a","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.7. NEUROTOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":387.9808,"y":753.5},"width":46.09836,"height":11.017679,"page":387}],"sectionNumber":4248,"textBefore":"rat (Shearer and ","textAfter":" 2015) no","comments":null,"startOffset":654,"endOffset":663,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618613Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787119Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5ab7e46e8fa0593375627d76398636f2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":485}],"sectionNumber":6897,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260101Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787408Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ce27cd51594c142773d8296bd371067","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":350}],"sectionNumber":6762,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260105Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787409Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"29676a338d7d9d25772469095251d978","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":497}],"sectionNumber":6909,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260103Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787408Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"45c30a60ea66fc731f571900b2b32f57","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":244}],"sectionNumber":6656,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260106Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787409Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"423ad4a3eb40fdf9ba16de72580322ce","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":387}],"sectionNumber":6799,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260111Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787409Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"97830223a8e7d9894b87aea721a88b67","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":62}],"sectionNumber":6474,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260119Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787411Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"907d0767bdabba526d5b49d842031f0d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":468}],"sectionNumber":6880,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260122Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787412Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c90f1b3a7016708167e9e22c341c2e2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":115}],"sectionNumber":6527,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260123Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787412Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"872906d747c4983aa915624cf5a3cd81","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":322}],"sectionNumber":6734,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260126Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787412Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bafa0f3afa53cad0179a8cc59acdcd50","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":347}],"sectionNumber":6759,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260131Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787413Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"161021f33c48cefcdfa9625091790063","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":274}],"sectionNumber":6686,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260137Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6df30269827c040079e4dddbb5dc9b42","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":243.15105,"y":226.73999},"width":12.040009,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2844,"endOffset":2846,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860635Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"f6ce1a2d162eda682ed380ceead45e8d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":370}],"sectionNumber":6782,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260142Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c7891e5b10600243edd0349781cbff5d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":631}],"sectionNumber":7043,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260143Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787416Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"460fd130a4e7b4c0b230193cb70b718f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":139}],"sectionNumber":6551,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260145Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787416Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f0366259241d4aeadd900c7881d6c15d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.10628,"y":386.49},"width":36.36113,"height":11.017679,"page":13}],"sectionNumber":50,"textBefore":"was added in ","textAfter":" 1 section","comments":null,"startOffset":13035,"endOffset":13041,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260146Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787416Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b6bb78d64f27cd447ee50d634f41cbf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":412}],"sectionNumber":6824,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260148Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787416Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7dc662d30fe24a31b0b632188558692e","type":"PII","value":"48","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":193.49745,"y":715.58},"width":12.040009,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":null,"textAfter":null,"comments":null,"startOffset":616,"endOffset":618,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860636Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"871dd3ef6c0235e6f7390d8b9fcdf1e2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":250}],"sectionNumber":6662,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260157Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787418Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"940b6dcdefb9d53f136b947c6ece7933","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":642}],"sectionNumber":7054,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260161Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787418Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"431edec5f0d58894f231191ec6479d24","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":452}],"sectionNumber":6864,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260162Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787418Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70d170702fd761775fbcde086135710d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":589}],"sectionNumber":7001,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260168Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787419Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d094601a5c2134b0a5cc552679b9df56","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":405}],"sectionNumber":6817,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260166Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787419Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"30e1be8a258bab07b60270d0bce542ea","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":258}],"sectionNumber":6670,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260177Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8aaf7a32ba4406a80c76a5e00511eb0c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":211}],"sectionNumber":6623,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260179Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787421Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a33f1b513418ee7aef61de75368fece","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":469}],"sectionNumber":6881,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260189Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787422Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae1c78e96ab76e97713ed6984104c7d7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":287}],"sectionNumber":6699,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260187Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787422Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b816f1b5abd542bd33a7fcbdaf848815","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":127}],"sectionNumber":6539,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260192Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787422Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"81a086f6b33397bbbd4dcf4cb12bc740","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":7}],"sectionNumber":6419,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260201Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787424Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9e2412f0d5d99e6741583c8bb80e50cc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":326}],"sectionNumber":6738,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260204Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787425Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0db326d67206b68c3461c5777f958794","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":377}],"sectionNumber":6789,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260207Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787425Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"42fc1500d9907978c55871cb376e319e","type":"PII","value":"Louis","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Under the experimental conditions reported, 2,4,6-TCP did not cause an increase in the number of\nA/J mice with lung tumours, when dosed by either gavage or intraperitoneal.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":321.87515,"y":524.15},"width":21.510986,"height":10.0905,"page":605}],"sectionNumber":6057,"textBefore":"Chemical Company, St ","textAfter":", Missouri, USA","comments":null,"startOffset":141,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618852Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787307Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ebef08a9ed95a816f362d56c549e1acc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":518}],"sectionNumber":6930,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260205Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787425Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"668404f78a5e3c8952d5e1146cf7db31","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":407}],"sectionNumber":6819,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260208Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787425Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e5daa513daa8fe06abd32aa79f54db26","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":121}],"sectionNumber":6533,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26021Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787425Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2aeb039709d1e98e7ccac599947cfa3f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":226}],"sectionNumber":6638,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260214Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787426Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40d94fbd5c34a8545b47422e92dd5a40","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":201}],"sectionNumber":6613,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260216Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787426Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ff8fdb90259869b8ccc2be349232c994","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":354}],"sectionNumber":6766,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260217Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787426Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fffebdf61aaa09dd7095261f81c0b15b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":369.05502,"y":114.77997},"width":29.935028,"height":10.0905,"page":261}],"sectionNumber":3027,"textBefore":"Final ","textAfter":": 10 mL/kg","comments":null,"startOffset":34,"endOffset":40,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260219Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787426Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"42e73792afc60bf4457fe5d973b5aaf6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":132}],"sectionNumber":6544,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260223Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787427Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9844ec3e8c957400a92f02fe0d123f3c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":425}],"sectionNumber":6837,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260224Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787427Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"386946de4054c0d5589f770baa31f81e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":522}],"sectionNumber":6934,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260227Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787428Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2163853ad2e5f270bfa66678a5feda01","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":90.11424,"y":311.85004},"width":12.039993,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1531,"endOffset":1533,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860643Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ecf8b0dc55c393d78a4bbc8120cabd4a","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":630.74},"width":25.435028,"height":10.0905,"page":233}],"sectionNumber":2812,"textBefore":"Sokowloski A (2014) ","textAfter":" (CCR) Report","comments":null,"startOffset":118,"endOffset":124,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618453Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787005Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cdfa48e919dd80df37032f88db80df78","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":545}],"sectionNumber":6957,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260232Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787428Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1abe7214dab9ff6ead61fe3945916927","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":393}],"sectionNumber":6805,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26024Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787429Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"de4e2827605453f3153991c8807c3688","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":131}],"sectionNumber":6543,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260242Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78743Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"88e877c0e9a0550d6a22c23fd096fc37","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":264}],"sectionNumber":6676,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260241Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78743Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2544907f2580470ce00040a8bdc765d4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":569}],"sectionNumber":6981,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260244Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78743Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fe3b6e3f81e8b3cc97a13a5bf9f1db3a","type":"PII","value":"1-3","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Treatment times:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.22348,"y":550.31},"width":15.666519,"height":11.017679,"page":553}],"sectionNumber":5707,"textBefore":null,"textAfter":null,"comments":null,"startOffset":700,"endOffset":703,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860644Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"98214a6d956f26a7a9475631c447841f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":109}],"sectionNumber":6521,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260245Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787431Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"621075fa59b2156f18727e0c4da4eb87","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":537}],"sectionNumber":6949,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260248Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787431Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"928202382bfa4b586b82fd9dfb212c71","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":521}],"sectionNumber":6933,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26025Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787431Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"559bc1e6a3c569b419ba310cae3ed3c7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":256}],"sectionNumber":6668,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260252Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b0c534286fcf648b93dc36badc93e21a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":565}],"sectionNumber":6977,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260255Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8297016df216c6091a5673cca2f89860","type":"CBI_address","value":"Witham, Essex, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":366.13647,"y":586.31},"width":88.99988,"height":11.017679,"page":166}],"sectionNumber":2173,"textBefore":"Special Diets Services, ","textAfter":".","comments":null,"startOffset":200,"endOffset":217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618404Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786954Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c3e2e024c5b83584db753c1a6d6dc0e7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":15}],"sectionNumber":6427,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260259Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"188f1951404e04b5b6018998cdf1b905","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":360.05502,"y":307.52997},"width":29.935028,"height":10.0905,"page":530}],"sectionNumber":5460,"textBefore":"Dose Level Final ","textAfter":" Route 2,4,6-TCP","comments":null,"startOffset":542,"endOffset":548,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260262Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787433Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2c22ab4e7c701aea92942da3d2e7d626","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":503}],"sectionNumber":6915,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260264Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787433Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e81992d0ca81a6de14e9667f8222e622","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":674.3},"width":25.435028,"height":10.0905,"page":233}],"sectionNumber":2811,"textBefore":"Sokolowski A (2012) ","textAfter":" (CCR) Report","comments":null,"startOffset":118,"endOffset":124,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618453Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787005Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"47e9e4fcf259009e5a69b4fa90dcf507","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":202}],"sectionNumber":6614,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260265Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787434Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1af874f9f1464841d833b88305987864","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.85,"y":318.33002},"width":22.977997,"height":10.0905,"page":306}],"sectionNumber":3330,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618528Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787051Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e1bb80ac08879dbd51f5e9047ce328ba","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":499}],"sectionNumber":6911,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260267Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787434Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1670c5de7675bc7dd9eef66a565a1cab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":111}],"sectionNumber":6523,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260271Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787435Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a63f0891bee066be0457c69afafb8c2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":192}],"sectionNumber":6604,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260273Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787435Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"639edcc2b1364814ddff74eae8665153","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":107}],"sectionNumber":6519,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260275Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787435Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a9b01bffcc35c2bd11ecb19cc2e49a1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":267}],"sectionNumber":6679,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260278Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787436Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e897d72cffbeee8da47299b9bdb3df2f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":470}],"sectionNumber":6882,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26028Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787436Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"351dc1690827e3ad695032dc93ff1aa1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":511}],"sectionNumber":6923,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260281Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787436Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59fe958dd5f9038dd44987cd60b31c70","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":281}],"sectionNumber":6693,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260285Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787437Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"16fe817f4978a357a9c5be854b70002f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":334}],"sectionNumber":6746,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260291Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787438Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d539cd5f662f0ca2d7c1e150ed2bc9fd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":65}],"sectionNumber":6477,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260294Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787438Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5bd6bcef0a498d0ccc26bb3387fb6dd8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":95}],"sectionNumber":6507,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260298Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f3690411b7f64a628d43921eb86ea03","type":"PII","value":"48","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Other physical/functional abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":386.83636,"y":330.45},"width":12.039978,"height":11.017679,"page":276}],"sectionNumber":3097,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3354,"endOffset":3356,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860651Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ae0427b0ce47b9ef2a616f3278b55c69","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Diet preparation and analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":754.46},"width":33.001488,"height":10.526819,"page":474}],"sectionNumber":5053,"textBefore":"Bilirubin Ketones Leukocytes ","textAfter":" pH Protein","comments":null,"startOffset":4710,"endOffset":4716,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.2603Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b3a89198762ae85c5b73ba8b7e24a3b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":482}],"sectionNumber":6894,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260301Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51009aa5898daa529df0a3c42e16bf67","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":507}],"sectionNumber":6919,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260306Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6af999e9c5fc082adeaf3535d909e67","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":20}],"sectionNumber":6432,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26031Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9314ca89469ca0b5aae80bb35aadf3c5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":152}],"sectionNumber":6564,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260312Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787441Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b23c4b0dee94700d5f6ef37c9835e9e3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":286}],"sectionNumber":6698,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260315Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787441Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6de5d03ec4f4eb2d6bf37328660318ff","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":540}],"sectionNumber":6952,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260316Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787441Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fcbe6960dce018a992a68da58ab1aad1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":466}],"sectionNumber":6878,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260317Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787442Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a4f28c60e1f71b3180a443fa258d8b5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":224}],"sectionNumber":6636,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260319Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787442Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e219fcfd666d61955258dd27f9434a35","type":"CBI_author","value":"Webbley K.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":272.75046,"y":140.70001},"width":54.378387,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"14C studies (","textAfter":"; Williams D.,","comments":null,"startOffset":6019,"endOffset":6029,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61821Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257837Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787442Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0e32ec2b45ae6dd83c821686aa5af4f2","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Data Gaps, Uncertainties and Inconsistencies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":322.2389,"y":615.02},"width":46.230835,"height":11.017679,"page":302}],"sectionNumber":3310,"textBefore":"2015; Shearer, 2015, ","textAfter":", 2015a)","comments":null,"startOffset":709,"endOffset":718,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618523Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787049Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6ff4901d0a8e836033665db178fc4b48","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":346}],"sectionNumber":6758,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260324Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787443Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4579173a5b1db40cfcdf4aa4b2e3ef50","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":10}],"sectionNumber":6422,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260325Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787443Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59f7a6716b20b9397eb8a0b176bacc49","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":388}],"sectionNumber":6800,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260328Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787443Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c95d4883dd1afcecbe8e35d39524df0b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":579}],"sectionNumber":6991,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26033Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787444Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d2d00b7fe5117f3beb9a3c48ec05b64","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":389}],"sectionNumber":6801,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260331Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787444Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9cbdf095bd2e0b97884b5865c7a97c56","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":167}],"sectionNumber":6579,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260333Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787445Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3500cae0a550f4aa92f1cb6e2f0a5111","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":472.91},"width":25.435028,"height":10.0905,"page":233}],"sectionNumber":2816,"textBefore":"Roth M (2012) ","textAfter":" (CCR) Report","comments":null,"startOffset":85,"endOffset":91,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618453Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787005Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ca463fa15a517a9587896efd1e43789","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":430.15,"y":553.55},"width":25.435028,"height":10.0905,"page":402}],"sectionNumber":4366,"textBefore":"(2010). Report No. ","textAfter":" C57852. Syngenta","comments":null,"startOffset":209,"endOffset":215,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618621Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787127Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a2c6831b57d2493cc9f751b5f1373d3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":293}],"sectionNumber":6705,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260346Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787446Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eda2762fdd7dba7c85ecdb787c89ea8d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":423}],"sectionNumber":6835,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260344Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787446Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"be4d895a123561ed28ef057d04c62241","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":185.09137,"y":628.34},"width":12.040009,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":462,"endOffset":464,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860657Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"c6621084c74c03bef6b10c403c67659f","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Summary of major fetal abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":740.9},"width":27.970726,"height":11.017679,"page":376}],"sectionNumber":4122,"textBefore":"pregnant New Zealand ","textAfter":" rabbits from","comments":null,"startOffset":233,"endOffset":238,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618606Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787111Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"910180e7fce9cf1a3f283bdc1a6113a7","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Animal assignment and treatment:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.23303,"y":637.34},"width":27.970703,"height":11.017679,"page":436}],"sectionNumber":4659,"textBefore":"the New Zealand ","textAfter":" rabbit. Dose","comments":null,"startOffset":795,"endOffset":800,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618645Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787151Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"62162f6648f0b4efb859ab408ed8aab9","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.4. GENOTOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":505.8379,"y":618.02},"width":26.513428,"height":11.017679,"page":232}],"sectionNumber":2819,"textBefore":"responses in the ","textAfter":" tests and","comments":null,"startOffset":613,"endOffset":617,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618449Z"},{"analysisNumber":3,"type":"CHANGED","dateTime":"2022-05-11T14:03:58.164701Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787356Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"39f149e0f5cb547e8633e4313222da63","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":92}],"sectionNumber":6504,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26036Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787448Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9efa04de2fc1c0db2d17e4705058b9f6","type":"CBI_author","value":"Brown","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":498.78192,"y":578.39},"width":30.863281,"height":11.017679,"page":601}],"sectionNumber":6034,"textBefore":"study (Kitchin and ","textAfter":", 1989). To","comments":null,"startOffset":863,"endOffset":868,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618842Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258877Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787449Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"346ea61d1243e9b1c6a7e419cd3908be","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":425.31073,"y":506.03},"width":36.37213,"height":11.017679,"page":626}],"sectionNumber":6258,"textBefore":"is presented in ","textAfter":" 1, Level","comments":null,"startOffset":121,"endOffset":127,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260365Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787449Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ebfb40c8a300cc344782ea0592ab112","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":512}],"sectionNumber":6924,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260366Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d579b5846e5ae96f23851e94e39d68f1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":626}],"sectionNumber":7038,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260367Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3137b767ae472fb986f45fddf907d80e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":225}],"sectionNumber":6637,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26037Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9728e73338a149216fd3968d90e311ad","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":257}],"sectionNumber":6669,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260371Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"594aa23bd13ecebdedcd9c6da3ca8a27","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Administration of SYN545974, once daily, by oral gavage, to pregnant New Zealand White rabbits","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":465.66202,"y":753.26},"width":29.770264,"height":10.929359,"page":377}],"sectionNumber":4124,"textBefore":"pregnant New Zealand ","textAfter":" rabbits from","comments":null,"startOffset":81,"endOffset":86,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618608Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787113Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"05cb3848c5646accc291802206e5e221","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.59,"y":534.83},"width":29.934998,"height":10.0905,"page":436}],"sectionNumber":4660,"textBefore":null,"textAfter":" (mL/kg)","comments":null,"startOffset":81,"endOffset":87,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260373Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78745Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"156871b0b90d55f473c26663637c02e3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":446}],"sectionNumber":6858,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260376Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787451Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c218f0ea2d7a6e6c31c25a213eedd698","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":610}],"sectionNumber":7022,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260384Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787451Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"540d0638580f963dda95527d41cbd0ca","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":490}],"sectionNumber":6902,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260388Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787452Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aaf8da1c84c62f966b11cd095e759160","type":"PII","value":"Anderson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":374.95,"y":528.59},"width":35.964966,"height":10.0905,"page":510}],"sectionNumber":5289,"textBefore":"B.H; Resnik M.A; ","textAfter":" B; Zeiger","comments":null,"startOffset":333,"endOffset":341,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618725Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78722Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"89c8694efd71b75641736bfe56056127","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":421}],"sectionNumber":6833,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26039Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787452Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e36bbf12162e1b12b7ac80d660560f71","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":56}],"sectionNumber":6468,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260391Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787452Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f41df567f9dadc9110c2fc9f55c68cc9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":37}],"sectionNumber":6449,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260393Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787453Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25343704dcc3bd9962a652323079357d","type":"PII","value":"(3/1)","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":463.42505,"y":100.02002},"width":22.30722,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1835,"endOffset":1840,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860662Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b730ee1e43d55869c7be781bb1c46e72","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":175}],"sectionNumber":6587,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260397Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787453Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d716e64362279d804d54de57842db206","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":28}],"sectionNumber":6440,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260399Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787453Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a4f841da136070422622beae6b5b25bd","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":200.93,"y":96.064026},"width":22.977997,"height":10.0905,"page":239}],"sectionNumber":2851,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618457Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787007Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"00fa97bb10517bca4a9e9e86dad60ea6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":581}],"sectionNumber":6993,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.2604Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787454Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18ca5f759eefcfcda22e51caed5a00b7","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":122.958244,"y":501.59},"width":12.040001,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":null,"textAfter":null,"comments":null,"startOffset":186,"endOffset":188,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860663Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"57b5f2efb9a03814ce807cb73136c979","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":381.064,"y":571.07},"width":29.935028,"height":10.0905,"page":257}],"sectionNumber":2970,"textBefore":"Final ","textAfter":": 20 mL/kg","comments":null,"startOffset":47,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260405Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787454Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b388ed2dacad2549032d60b669d459da","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":249}],"sectionNumber":6661,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260406Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787455Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a5d8d04950ce1d65acc0dd5579efd3a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":16}],"sectionNumber":6428,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260409Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787455Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e34cc4dadcf62bc9ba032e920953a83b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":534}],"sectionNumber":6946,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260411Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787455Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b0d67ba8d9a0610d29aedd34ae5dabaf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":551}],"sectionNumber":6963,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260418Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787456Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93d5117c1f682fdfb389c3021bae1af5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":427}],"sectionNumber":6839,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260417Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787456Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e788cb281f9afe2bfc19500442eacc94","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":457}],"sectionNumber":6869,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26042Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787456Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93d5a579adebf628d5a66c6d38b17269","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":213}],"sectionNumber":6625,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260425Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787457Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c902e0f3fcb3ba25f495120aa95fe9d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.46,"y":548.2},"width":34.19667,"height":10.44714,"page":136}],"sectionNumber":6548,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260426Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787457Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f4b377d487e89ce39e5061c9c80c3bd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":373}],"sectionNumber":6785,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260427Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787457Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"723d0d5f34518816a52bd95348e625ea","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":465.66202,"y":702.62},"width":29.770264,"height":10.929359,"page":370}],"sectionNumber":4067,"textBefore":"pregnant New Zealand ","textAfter":" rabbits from","comments":null,"startOffset":2466,"endOffset":2471,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618603Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787108Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1873197cc3bdb56f8c15ffb5379707aa","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":588}],"sectionNumber":7000,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260429Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787457Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"74ae30539bfdbd164fffe1a4725f055c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":549}],"sectionNumber":6961,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26043Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787457Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"00d03373f17b2e7de5abb64677a49955","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":497.71194,"y":653.66},"width":11.918549,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":324,"endOffset":326,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860666Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"75bdb10c9cd86e103e5ee6bb85264996","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":138}],"sectionNumber":6550,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260433Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787458Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8576261f3509065098def48c8a2d9e96","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":253}],"sectionNumber":6665,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260437Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787458Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4565701103d3fd8c16162b6c3cb30c65","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":462}],"sectionNumber":6874,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260435Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787458Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"930e6033d64c9c4a80e7fc8baead0531","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":232}],"sectionNumber":6644,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26044Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787459Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8d0b25e16f730f87a6de002734550c3a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":627}],"sectionNumber":7039,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260441Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787459Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3526624f3b139ac6ae6231c828fb38b3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":607}],"sectionNumber":7019,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260443Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787459Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e5fbf3439667f26a3c6488ad3a5c48d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":502}],"sectionNumber":6914,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260456Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787461Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4be86572b3047d127948f1a2ff4dbf15","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":68}],"sectionNumber":6480,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260462Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787462Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c04312c0f449efb89028e519cada84ef","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":380}],"sectionNumber":6792,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260463Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787462Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c0cceb9fa670bc1984fa7fae27cead0a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":217}],"sectionNumber":6629,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260468Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787463Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3d88cb1fbd7c5508a50740789ef503b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":623}],"sectionNumber":7035,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260471Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787463Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82101743f7c8d4fd33fd890f1d63ff55","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":532}],"sectionNumber":6944,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260481Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787465Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb741b2715ac1bae28a0f38505af0a34","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":252}],"sectionNumber":6664,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260479Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787464Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"01605b0d0e3afc2c4193a1ccd7acd9ba","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":363}],"sectionNumber":6775,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260484Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787465Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"559dedc6ef3c550c64b0558fff71453d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":562}],"sectionNumber":6974,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260482Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787465Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da9451c9e458e52b64572e4fe58b0f90","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":576}],"sectionNumber":6988,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260494Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787467Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c520a180c6a10fc52c85065efb9d41f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":183}],"sectionNumber":6595,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260492Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787467Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a8b582ff52e7eabc056347686016050","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.97,"y":613.58},"width":22.978027,"height":10.0905,"page":177}],"sectionNumber":2335,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618415Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786966Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d9431c872dabebdb39a7a794af4a49f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":600}],"sectionNumber":7012,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260496Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787467Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"50462de5aae539ea8d3fde7e01540518","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"In conclusion, it can be stated that there were DNA strandbreaks observed in stomach, colon, liver,\nkidney, urinary bladder, lung and brain following oral administration of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":347.69205,"y":579.71},"width":30.772034,"height":10.018499,"page":569}],"sectionNumber":5821,"textBefore":"Dose Levels Final ","textAfter":" Preliminary: Dose-sighting","comments":null,"startOffset":265,"endOffset":271,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260498Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787468Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1871d9b495eb3b4419ec6a940259014c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":312}],"sectionNumber":6724,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260503Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787469Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c85500fc08fa17ee4fa1b275e319576a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":528}],"sectionNumber":6940,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260504Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787469Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ab2311f40d7104d22d91b0e129b7651a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":580}],"sectionNumber":6992,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260506Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787469Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2d014067f82c72815bfc7877be9ba166","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":394}],"sectionNumber":6806,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260507Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787469Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2b78638d062d8a370a4c7034ec09a10c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":386}],"sectionNumber":6798,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260509Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7708ba7a6de0b3ecf1824471f1d83f9b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":285}],"sectionNumber":6697,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260512Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2eb42d9e0bbe19f9f001021b03b43f0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":191}],"sectionNumber":6603,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260513Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d07f35865f5dc6355e0524741675e399","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":633}],"sectionNumber":7045,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260515Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2406c5490f1a0d43e31acac9a7dbf48e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":181}],"sectionNumber":6593,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260517Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787471Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65e6ad1e0afc67ae037ffbb14c0c84c4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":416}],"sectionNumber":6828,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26052Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787471Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d3727926157a756b02f84788615af3d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":448}],"sectionNumber":6860,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260522Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787472Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0ed888f33c4b0917794b6c058975e6d4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":75}],"sectionNumber":6487,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260526Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bd6f917f58dcaa156f3df6275947bb99","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":547}],"sectionNumber":6959,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26053Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4318977e6790ef1151400a55704a6ff6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":55}],"sectionNumber":6467,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260531Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6306029efe1faf7507e0bb05cacc1a96","type":"CBI_author","value":"Punler","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":229.38892,"y":497.87},"width":21.80754,"height":9.65418,"page":13}],"sectionNumber":50,"textBefore":"Data extracted from ","textAfter":" and Harris","comments":null,"startOffset":12365,"endOffset":12371,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618211Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.25784Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787475Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3eaabe3d12a2ba3542f9fab83fb6f3d2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":83}],"sectionNumber":6495,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260539Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787475Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9de74a0c054d390b80ce3721dbccc820","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":541}],"sectionNumber":6953,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260544Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787475Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7f0889dbc68e52dcf52262cf1dc64645","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.53204,"y":561.83},"width":30.772034,"height":10.018499,"page":466}],"sectionNumber":5009,"textBefore":"Final ","textAfter":": 10mL/kg","comments":null,"startOffset":29,"endOffset":35,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260545Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787476Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4050073cf237cc43cfa956a9314e000","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":376}],"sectionNumber":6788,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260548Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787476Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"799bd99f202ef769f41edfcbd6380136","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":171}],"sectionNumber":6583,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260553Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e513af64094e0946e7fb03a20ddd6c1e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":542}],"sectionNumber":6954,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260558Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d84dbd28cbfa90d6cf0b607cf4660061","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Statistical Analysis and Evaluation Criteria: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.69205,"y":604.22},"width":30.772034,"height":10.018499,"page":530}],"sectionNumber":5456,"textBefore":"Final ","textAfter":": 0.1 mL/","comments":null,"startOffset":39,"endOffset":45,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260556Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5b46fec50e78d9bc36aa022617291de","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":561}],"sectionNumber":6973,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260559Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787478Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a63489f3741a03288cb32956e5f79b02","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.4. GENOTOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":118.58,"y":668.66},"width":26.513443,"height":11.017679,"page":232}],"sectionNumber":2819,"textBefore":"two in vitro ","textAfter":" tests (reverse","comments":null,"startOffset":139,"endOffset":143,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61845Z"},{"analysisNumber":3,"type":"CHANGED","dateTime":"2022-05-11T14:03:58.164705Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787356Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb5ecd67a413b8b42de93d70c7f620d7","type":"PII","value":"10-15","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.24582,"y":160.02002},"width":26.864166,"height":11.017679,"page":251}],"sectionNumber":2952,"textBefore":null,"textAfter":null,"comments":null,"startOffset":713,"endOffset":718,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618462Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78701Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"6b46500b414b2208565dec9a4e9a37c5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":531}],"sectionNumber":6943,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260564Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787478Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69b776173ca4328ce00dee3b3908af74","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":450}],"sectionNumber":6862,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260568Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787479Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a5b92b5a70b2089cdd7d9f29faaeef2d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":9}],"sectionNumber":6421,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260565Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787478Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"72edb82bdecc09556ba7d5a140ff91ba","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":571}],"sectionNumber":6983,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260569Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787479Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"568ac1619aec449762a547ec1c3645cd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":536}],"sectionNumber":6948,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260573Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787479Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7400a278da8e2777b8d8f971dbd0d67c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":403}],"sectionNumber":6815,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260571Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787479Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"838a08f98b99f09080ffbd7156168bf7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":149}],"sectionNumber":6561,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260575Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78748Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a21b82701426c2d46354fbd37fd1cc7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":320}],"sectionNumber":6732,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260574Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787479Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"19c261e09981e47741c664a8d10574c0","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":208.25,"y":241.14001},"width":22.977997,"height":10.0905,"page":261}],"sectionNumber":3024,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":192,"endOffset":197,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618467Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787014Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f20d488252a427c1a1a36e323ba58fb","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.71,"y":637.34},"width":25.435028,"height":10.0905,"page":402}],"sectionNumber":4364,"textBefore":"(2009). Report No. ","textAfter":" 1266902. Syngenta","comments":null,"startOffset":114,"endOffset":120,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618621Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787127Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b49e3a5d62b99c05fe36bf41067a55ab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":113}],"sectionNumber":6525,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260591Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787482Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf11c77454e54819776dea000ead0fb6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":345}],"sectionNumber":6757,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260593Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787482Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cb0674c374fddfd6393015df384351bd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":199}],"sectionNumber":6611,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260594Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787482Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee88bb1c9b380c97fa52431de3d9eef6","type":"PII","value":"Anderson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":268.333,"y":99.900024},"width":43.592285,"height":11.017679,"page":542}],"sectionNumber":5588,"textBefore":"B, Resnick M, ","textAfter":" B and","comments":null,"startOffset":2033,"endOffset":2041,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618764Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787247Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6a17ffbada382324fb2cb5151f2d2c02","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":509}],"sectionNumber":6921,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260599Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787483Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"27b66d8c9cdde7ab5ed27568e7b1d0ed","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":39}],"sectionNumber":6451,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260605Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787484Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9e42891ef82db33862eb959dbefdbe1d","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.2-1: Summary of supplementary studies on SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":212.33,"y":247.62},"width":37.99901,"height":10.0905,"page":617}],"sectionNumber":6208,"textBefore":"study (Shearer and ","textAfter":", 2015)","comments":null,"startOffset":167,"endOffset":176,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61888Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787317Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b02e05a632bed065d905ada5853263f5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":608}],"sectionNumber":7020,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260608Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787484Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95e17944e44ed0602ae54f747e3462c6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":548}],"sectionNumber":6960,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260611Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787485Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"09535c05af483f857938a760af8ce380","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":161}],"sectionNumber":6573,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260615Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787485Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5e8674f46442add48a5586c4dc0bcc1d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":266}],"sectionNumber":6678,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260614Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787485Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9466b570d421f662bd5225dd0c97bb2c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":84}],"sectionNumber":6496,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260621Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787487Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b020bd9c5f6340e8e6a9e4006782ab49","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":64}],"sectionNumber":6476,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260626Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787487Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2bfed864f743ddb9d0962209754ca0d4","type":"CBI_author","value":"Penn L.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Animal numbers and treatment groups","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.45847,"y":525.83},"width":35.22403,"height":11.017679,"page":361}],"sectionNumber":3954,"textBefore":"report K-CA 5.6.2/06 ","textAfter":" (2015b)). Dose","comments":null,"startOffset":2197,"endOffset":2204,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618592Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258346Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787488Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"60f4f49a9075c0955d1ad2915b499204","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":214}],"sectionNumber":6626,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260628Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787488Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a993983452d2617b64bc8303298da5ec","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":178}],"sectionNumber":6590,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26063Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787488Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10634f483d3a824d7d4a241cabce4653","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":435}],"sectionNumber":6847,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260631Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787489Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5276dc9affaa6506e6c195d60cde460f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":444}],"sectionNumber":6856,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260633Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787489Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c807bbdd84e46124fc223d6ce824ce1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":463}],"sectionNumber":6875,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260634Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787489Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6b71c8f2c65d3bfdfbc41250abdd9864","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":471}],"sectionNumber":6883,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26064Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2ff0b863ea1ca0f277783439b510568c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":306}],"sectionNumber":6718,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260638Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fba40250992c8b31cf21032e2cd6ad7e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":613}],"sectionNumber":7025,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260641Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78749Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e59cffeb4595451d6d9794e10fc33083","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":189.58461,"y":289.28998},"width":12.040009,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2493,"endOffset":2495,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860678Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b7bbc69ee8460fe32639292936950e56","type":"CBI_author","value":"Punler M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":103.69344,"y":329.73},"width":47.754387,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"repeat administration (","textAfter":", Harris J.,","comments":null,"startOffset":4683,"endOffset":4692,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618209Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257828Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787491Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f145ff36f99cd49ff9d2906b610bac6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":374}],"sectionNumber":6786,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260645Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787491Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1008ff481949153d5f8764229381efc6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":176}],"sectionNumber":6588,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260646Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787491Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dfe4fe9473bd773d7c264fd67a015a07","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":294}],"sectionNumber":6706,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260648Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787492Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"192a252f3b600916dfdc823b4ba021de","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":301}],"sectionNumber":6713,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260654Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787492Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a5ba175ae7b9efec45ca862b3fcd8ed","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":344}],"sectionNumber":6756,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260655Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787493Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5e275db579bcebbf6b5434449e1531cd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":114}],"sectionNumber":6526,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260657Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787493Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4a0adba66a4ac2581aa007ccda7c09ab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":67}],"sectionNumber":6479,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260661Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787494Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb38797e7c15fdc2ae39563052706c67","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":455}],"sectionNumber":6867,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260659Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787493Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3ce26e906ae33340d3c4171188d4c437","type":"PII","value":"48","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Other physical/functional abnormalities","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":206.16673,"y":330.45},"width":12.040009,"height":11.017679,"page":276}],"sectionNumber":3097,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3313,"endOffset":3315,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.86068Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"af63604ba39645f12e14144f63049bf7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":303}],"sectionNumber":6715,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260663Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787494Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2fb23b8901d04c1bd050f5aacae5a85","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":240}],"sectionNumber":6652,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260665Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787494Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"21ef172e157678178c80b59343730e89","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":629}],"sectionNumber":7041,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26067Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787495Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f542f994599e71aee5d4437388c6b161","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":219}],"sectionNumber":6631,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260674Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787495Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"744e52dd444829ef885096a510bcad2f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: In conclusion, it can be stated that there were DNA strandbreaks observed in stomach, colon, liver,\nkidney, urinary bladder, lung and brain following oral administration of 2,4,6-TCP.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":338.57202,"y":230.94},"width":30.772034,"height":10.018499,"page":568}],"sectionNumber":5816,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":93,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260679Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787496Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f75669a503da443d48b4c162d11f3f6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":242}],"sectionNumber":6654,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260681Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787497Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b9f666371928992351a212746a72984c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":420}],"sectionNumber":6832,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260682Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787497Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f19f7e9ffe888ae15d800faecddaf4f6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":58}],"sectionNumber":6470,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260687Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787498Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"99c24ad0e4ae4c5fc5ee2dceb9fc3a87","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":398}],"sectionNumber":6810,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260693Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787499Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"32b9ffaf207c8593d455c2ef0fd40204","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":229}],"sectionNumber":6641,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260691Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787499Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f13ad4d2867cec99490a925ace2a8f8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":481}],"sectionNumber":6893,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26069Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787498Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8498086fd5c6648ddd67ec87862f8f0e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":379}],"sectionNumber":6791,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260695Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787499Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3564a9aed8c7d6c66cbf551d9477b347","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":204}],"sectionNumber":6616,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260701Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4405d7248743135b8ffc61ebf17d9bd3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":458}],"sectionNumber":6870,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260703Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"649f9f21bbf74f1c6f060ee15351d1d1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":99}],"sectionNumber":6511,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260706Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bb9b3b45ab031fcc8a29107375175bcd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":61}],"sectionNumber":6473,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260712Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787501Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f588c1137380f0d63a377de099e510ef","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":480}],"sectionNumber":6892,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260718Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787502Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a83a66775f72833319cb9e099c2b5b8b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.3.2-7: Intergroup comparison of selected urine parameters","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":67.224,"y":461.63},"width":29.934998,"height":10.0905,"page":195}],"sectionNumber":2501,"textBefore":"pH ","textAfter":null,"comments":null,"startOffset":3,"endOffset":9,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26072Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787502Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b4a81215c1951ba6315508eeb6dcf5a7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":144}],"sectionNumber":6556,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260725Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787503Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c8f5d035c6637db51966aedc359c57b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":333}],"sectionNumber":6745,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260727Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787503Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b4b4341f23fcaa85e662fc85653abf93","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":69.504,"y":459.35},"width":22.978004,"height":10.0905,"page":402}],"sectionNumber":4368,"textBefore":"in New Zealand ","textAfter":" Rabbits","comments":null,"startOffset":95,"endOffset":100,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618622Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787128Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"80f2b64229c890ea08edb528621959a5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":284}],"sectionNumber":6696,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260729Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787503Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"442c90ce2b8dd070771f48056bb21949","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":321}],"sectionNumber":6733,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260732Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787504Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e958c31d96dc81d137cd53dd3e486b13","type":"CBI_author","value":"Blum","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-42: A summary of the genotoxicity studies on 2,4,6-TCP available in the published\nliterature","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":399.50803,"y":715.58},"width":20.953003,"height":10.0905,"page":511}],"sectionNumber":5299,"textBefore":"Juhl U; ","textAfter":" K; Witte","comments":null,"startOffset":95,"endOffset":99,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860684Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"190d0367e6e3c829a3765e7e6f5fd90a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":616}],"sectionNumber":7028,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260738Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787504Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92f388c716f16970885b58588a728908","type":"PII","value":"10-13","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":342.27878,"y":690.86},"width":26.831207,"height":11.017679,"page":463}],"sectionNumber":4999,"textBefore":null,"textAfter":null,"comments":null,"startOffset":717,"endOffset":722,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787166Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"923410e47d20e487842733ec63f05c76","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Group identification and animal numbers","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":87.738,"y":188.22003},"width":30.898003,"height":10.018499,"page":389}],"sectionNumber":4260,"textBefore":"Dose ","textAfter":" (mL/kg bw)","comments":null,"startOffset":5,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260745Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787505Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6636c481d66da49d9f1c061f20041c47","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":260}],"sectionNumber":6672,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260746Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787505Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5fad7d340fdd34ca5d457997ef396196","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":599}],"sectionNumber":7011,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260747Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787505Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9c2458e1a550160fd6ac5c2a464576cd","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":538.43},"width":25.435028,"height":10.0905,"page":233}],"sectionNumber":2814,"textBefore":"Wollny H-E (2013) ","textAfter":" (CCR) Report","comments":null,"startOffset":164,"endOffset":170,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618452Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787004Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82af4d4d8a434ef5741dd5d8ed2d9b5d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":272}],"sectionNumber":6684,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26075Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787506Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9a7d0cdbf56ca8a84abdab663f51071","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":472}],"sectionNumber":6884,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260755Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787507Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d97a11fa5bd2327552c1ba4e1267d20e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":66}],"sectionNumber":6478,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260767Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787509Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad1a8da764f1766a5226db566cf5180e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":173}],"sectionNumber":6585,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260768Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787509Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da038ff5e83a6cf528bf876452a78493","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":262.082,"y":402.09},"width":22.978027,"height":10.0905,"page":370}],"sectionNumber":4069,"textBefore":"New Zealand ","textAfter":null,"comments":null,"startOffset":48,"endOffset":53,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618603Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787107Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8c7fce92df031ddd54c316688383decf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":228}],"sectionNumber":6640,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260773Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787509Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a60fd9ebb28b61914ac09287ad1dcdba","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":516}],"sectionNumber":6928,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260775Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"89875356695c8abadbcd3db98cc7b275","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":409}],"sectionNumber":6821,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260776Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d28ea014a8f01888c57a07d7bb378cf6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":197}],"sectionNumber":6609,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260777Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"579b2bf4bef9a848e5c0beabdcc08e26","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":103}],"sectionNumber":6515,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260779Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78751Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"004bde3113747a98b2c506a048e772e7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":464}],"sectionNumber":6876,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26078Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787511Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b8da35558b845f703e2466d6073cb91a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":493}],"sectionNumber":6905,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260783Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787511Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"61e1097d36d2a6c4345852ff3373b66e","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":176.56847,"y":112.619995},"width":11.918564,"height":11.017679,"page":538}],"sectionNumber":5549,"textBefore":null,"textAfter":null,"comments":null,"startOffset":316,"endOffset":318,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860687Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"11a7bf0dc606a789f00fdd97b1d77299","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":42}],"sectionNumber":6454,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260789Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787512Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6be7a3e9d727e318e96a179a7a2348f4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":428}],"sectionNumber":6840,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260791Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787512Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5efc345b6858c278b490316bfe617f5a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-8: Selected urine analysis findings in rats administered M700F001 for at least 91 days\n(group means)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":65.424,"y":455.27},"width":29.934998,"height":10.0905,"page":433}],"sectionNumber":4635,"textBefore":null,"textAfter":" [mL]","comments":null,"startOffset":0,"endOffset":6,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260794Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787512Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0291b661af1bf5c99523d9dff12aa0d9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":157}],"sectionNumber":6569,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260797Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787513Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f3f5d72daafdb541a3074eb051e764e2","type":"CBI_author","value":"Punler M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":196.85263,"y":690.74},"width":40.869904,"height":10.526819,"page":91}],"sectionNumber":1354,"textBefore":"Report: K-CA 5.1.1/06 ","textAfter":" and Harris","comments":null,"startOffset":3184,"endOffset":3193,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618292Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257932Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787513Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93a9c235141848ee9229e1625f574f59","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":57}],"sectionNumber":6469,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259751Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787356Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"36011b08a08c2433a47066bca399c1fb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":410}],"sectionNumber":6822,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259755Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787357Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"424e94c9f3a58088da2aa9dca13b8c20","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":487}],"sectionNumber":6899,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259757Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787357Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d51ac2d630ab058acecdaf19686c24a3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":510}],"sectionNumber":6922,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259759Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787358Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2594b278f7d95f69204e7a7d1fa5d36b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":279}],"sectionNumber":6691,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259762Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787358Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a3d7c6f2cfdfbb77675930f701c75fb0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":424}],"sectionNumber":6836,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259764Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787358Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db0a931e675f132e3b6f3842dbdc1ccb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":43}],"sectionNumber":6455,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259765Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9a2246c16c14f88b112b99f85c7ef97f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":391}],"sectionNumber":6803,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259767Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a64125d40f0b54ac133e7fbf37d34677","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":91}],"sectionNumber":6503,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259768Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"768a444d72f48a547538dd5384973a1b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":591}],"sectionNumber":7003,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259771Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787359Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6743e6531fe4294f5321aef3778872d7","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":185.44463,"y":515.75},"width":12.040009,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1013,"endOffset":1015,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860689Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"028a6511810ea9a9adb3c549cfa907f0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":239}],"sectionNumber":6651,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25978Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787361Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0df8edd827bc3c11d65b5a3ee0773335","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":595}],"sectionNumber":7007,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259787Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787362Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"250776d4a6608e3174af8091d1b3d947","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":23}],"sectionNumber":6435,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259789Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787362Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"91b052ff716536b1bce4028233267f34","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":557}],"sectionNumber":6969,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259792Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787363Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a509dd1d84e4a6ee1f4dfc5245e0062","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":606}],"sectionNumber":7018,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259797Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787363Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf4e1b23a16c84d70d769c3020c55364","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":203}],"sectionNumber":6615,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259798Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787364Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f5de2224615eb7dd7e40ac98492aec51","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":525}],"sectionNumber":6937,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259799Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787364Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f8d6ffa0d4c8de920c60b73c53722cbd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":209}],"sectionNumber":6621,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259801Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787364Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51089ef83b4e2e6f38b9a27fcbd22b61","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":593}],"sectionNumber":7005,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259804Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787365Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d976a381ef8244e062f408078626d396","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":474}],"sectionNumber":6886,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259805Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787365Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"77768dfe9cefc68a51144d1e33291355","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Test Animals:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":273.60202,"y":731.18},"width":22.978027,"height":10.0905,"page":132}],"sectionNumber":1870,"textBefore":"New Zealand ","textAfter":" rabbit","comments":null,"startOffset":31,"endOffset":36,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61836Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78692Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"89f9c268eaebda0ede70b13f4d9fd739","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":578}],"sectionNumber":6990,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259807Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787365Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fcc680ec5d165278c05aaefc4b17b796","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":478}],"sectionNumber":6890,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259809Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787366Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c24af818afe94d3a1a21ac264529ddab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":125}],"sectionNumber":6537,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259814Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787367Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"479b5bf6cace83f5d2f530daea981261","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":22}],"sectionNumber":6434,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259817Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787367Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d1e17fb2575b1d87de643c667ca5605f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":459}],"sectionNumber":6871,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259819Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787367Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6289c6ed43b14c12229ad6d24677da7a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":355}],"sectionNumber":6767,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259825Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787368Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6db5cfd89ef1c4d97e9dafde7e0db7f6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":180}],"sectionNumber":6592,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259826Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787369Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53f893cdbcb79300285de5684e960069","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":596}],"sectionNumber":7008,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259833Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"13de90d03aafabc4df6b58136875b454","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":489}],"sectionNumber":6901,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259839Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78737Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4619b83aa1830ee26c4773f19e5af681","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":645}],"sectionNumber":7057,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259842Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787371Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"000097d8be491242e9050f00305c2fcf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":307}],"sectionNumber":6719,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259844Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787371Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e6782f88ed7528a0327343937ce1f49c","type":"PII","value":"48","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":297.035,"y":698.06},"width":10.062988,"height":10.0905,"page":492}],"sectionNumber":5149,"textBefore":null,"textAfter":null,"comments":null,"startOffset":320,"endOffset":322,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860693Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ac859ddbf766e9daddd06c2cea533f58","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":309}],"sectionNumber":6721,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259849Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787372Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d9a7765a7bef9d14d07ab9e647fb1519","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":134}],"sectionNumber":6546,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259851Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787372Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed656a0c6829d80fda1acb2d84695ccd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":395}],"sectionNumber":6807,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259855Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"743164b7e33c0453608849d1b463837a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":237}],"sectionNumber":6649,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259853Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787372Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e87b5287932a9a68ba202ebf73a3fdaa","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.25,"y":667.34},"width":22.977997,"height":10.0905,"page":93}],"sectionNumber":1355,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":68,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618293Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786866Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fa8064085be8678d15ed659d74920487","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":577}],"sectionNumber":6989,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25986Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787373Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8f59c0030f7a827d0721bcdee67b1376","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":102}],"sectionNumber":6514,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259862Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787374Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"17f4fbb6c7374bd8e2f0db88f44545d9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":413}],"sectionNumber":6825,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259868Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787375Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69a72028206248fd47652df29aff81b8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":270}],"sectionNumber":6682,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259869Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787375Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b25935d06de0a4e5c8a6b923986dff8","type":"PII","value":"(50","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Immunological assay:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":453.79553,"y":627.02},"width":15.627991,"height":11.017679,"page":599}],"sectionNumber":6026,"textBefore":null,"textAfter":null,"comments":null,"startOffset":909,"endOffset":912,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860695Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"fb3f4279baf3efcdf3c46e974e13ab31","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":126}],"sectionNumber":6538,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259874Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787375Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7278458e6dc30d826402d9765c89e49e","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":495.169,"y":553.55},"width":25.317993,"height":10.0905,"page":448}],"sectionNumber":4882,"textBefore":"(2014a). Report No. ","textAfter":" 1602600. Syngenta","comments":null,"startOffset":99,"endOffset":105,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618652Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787159Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"964697f738e4d142584ab6d24e94525d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":390.89502,"y":598.46},"width":29.935028,"height":10.0905,"page":257}],"sectionNumber":2969,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":46,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259878Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2d803dd6bcfd1d4726c0417648df0ab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":338}],"sectionNumber":6750,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.25988Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787376Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5cc8480dbd5a2d6ca3a586c098ae2e7a","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":451.16483,"y":402.57},"width":12.039978,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1826,"endOffset":1828,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860695Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"4fd88a34dc8e21d7050d0bc48a037db0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":530}],"sectionNumber":6942,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259883Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787377Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1f895450711338c10a2804f1ceedf6e5","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TEST PERFORMANCE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":356.32172,"y":549.11},"width":26.62384,"height":11.017679,"page":522}],"sectionNumber":5403,"textBefore":"as described by ","textAfter":" (Ames et.","comments":null,"startOffset":370,"endOffset":374,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258673Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787377Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b14e13baad50985df3118f909e70d8da","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":76}],"sectionNumber":6488,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259884Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787377Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"119c63a749fcca3e42afd2dab53ba099","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":299}],"sectionNumber":6711,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259886Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787377Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9b0f12a8b726de55a95fb7800eb75af","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":89}],"sectionNumber":6501,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259888Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787378Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b83edf1da5ca37d4aa335c0b14c0a549","type":"CBI_author","value":"Shearer","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.7. NEUROTOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":331.01437,"y":753.5},"width":34.517456,"height":11.017679,"page":387}],"sectionNumber":4248,"textBefore":"in rat (","textAfter":" and Robertson","comments":null,"startOffset":642,"endOffset":649,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618613Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258394Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787378Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c817eff70cdf2c4f12ed76e74aa27048","type":"PII","value":"48","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":205.22832,"y":487.67},"width":12.040009,"height":11.017679,"page":291}],"sectionNumber":3217,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5777,"endOffset":5779,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860697Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"44255823e9ce4604eb3e7cac9171d8cc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":150}],"sectionNumber":6562,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259889Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787378Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10b71f70b4c0d610fc572d578134621a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":375}],"sectionNumber":6787,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259891Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787378Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24b320f05e2a817a43a66e91c3120a38","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":519}],"sectionNumber":6931,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259895Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787379Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da13abf22e86ed7ab0b1aa146218c5fd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":187}],"sectionNumber":6599,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259894Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787379Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28c4548713ed7a2f85476b1b373e31c8","type":"CBI_author","value":"Williams D.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":332.3554,"y":140.70001},"width":54.985596,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"studies (Webbley K.; ","textAfter":", 2015; Hutton","comments":null,"startOffset":6031,"endOffset":6042,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618208Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257826Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78738Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"025d02ebb5d457543bcb578da3ec2620","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":372}],"sectionNumber":6784,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259898Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78738Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e80e81a24541c0415271f76c7e3fdc5a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":609}],"sectionNumber":7021,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259901Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787381Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3d9d40f5bc15bf04d1dfeee35fe72936","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":305}],"sectionNumber":6717,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259904Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787381Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"84cb4802f6a2903e224133a927f60e7e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":324}],"sectionNumber":6736,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259905Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787381Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5dbcf4f4bed400b6c750687374533e5a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":119}],"sectionNumber":6531,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259907Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787382Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"191a437bd8f3e0c0da8eaa313dccac28","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":347.21204,"y":248.70001},"width":30.772034,"height":10.018499,"page":565}],"sectionNumber":5789,"textBefore":"Levels (mg/kg) Final ","textAfter":" Preliminary: Not","comments":null,"startOffset":89,"endOffset":95,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259909Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787382Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cdea9755a40515292d392376bb5d5e25","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: SYN545974 is classified as “non phototoxic”.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.85,"y":628.46},"width":22.977997,"height":10.0905,"page":157}],"sectionNumber":2115,"textBefore":null,"textAfter":" solid","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618391Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786943Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1eaf83297b26d62fe5a494a3bd1f8251","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":217.9243,"y":314.61},"width":12.040009,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2295,"endOffset":2297,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860699Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d7b4e38313ca5ac276758942149b8c29","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":153}],"sectionNumber":6565,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259919Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787383Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c273735ba3c84ca0fdb72aabcf0d0fd3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":614}],"sectionNumber":7026,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259922Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787383Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bbb0aecef6f2f1207ae60c73ccec1182","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":296}],"sectionNumber":6708,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259925Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787384Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51f296348bec65abdd5209fbfffc7295","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":6}],"sectionNumber":6418,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259923Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787384Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"59e219709eb7ce5fe8ebdd753880b986","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":442}],"sectionNumber":6854,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259931Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787385Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1ab4849f8dc1c643a3090dac813a40a5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":184}],"sectionNumber":6596,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259935Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787385Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d38e75bfaeed8ef9afe31e1cb3093ab8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":554}],"sectionNumber":6966,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259937Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787385Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d2cfc3ea3e42400d06d7a8c73759313c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":194}],"sectionNumber":6606,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259946Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787387Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b14e600230098d23e2685ffbf3d7938","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":245.52434,"y":384.81},"width":27.860306,"height":11.017679,"page":150}],"sectionNumber":2051,"textBefore":"male New Zealand ","textAfter":" rabbits. The","comments":null,"startOffset":161,"endOffset":166,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618385Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786939Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c33561ac60c490b7198ee1bd5133aa5a","type":"CBI_address","value":"Indianapolis, IN, USA","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":462.59},"width":101.82578,"height":11.017679,"page":320}],"sectionNumber":3400,"textBefore":null,"textAfter":null,"comments":null,"startOffset":3713,"endOffset":3734,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.8607Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"198e8e80144f6c55430ef9af8ce8efd3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":298}],"sectionNumber":6710,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259949Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787387Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a8158cc514b0fc1ad010f529554cefc8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":186}],"sectionNumber":6598,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259952Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787388Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f9c9c0b33f2f4a4f5695b97ffa2d876","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":86}],"sectionNumber":6498,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259954Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787388Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db4f7e46f90150a1210506a6058640a7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":445}],"sectionNumber":6857,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259951Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787388Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d9af339998ab3383683c9c8ada5f5e4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":360}],"sectionNumber":6772,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259956Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787389Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"938c7a46d5be4ba89fc65cfc7948a1e4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":379.015,"y":142.26001},"width":29.935028,"height":10.0905,"page":261}],"sectionNumber":3026,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":46,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259957Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787389Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8866e0d962f4fb81b433ad86768f163a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":261}],"sectionNumber":6673,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259962Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787389Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6a3376d04b66fd0465dcb8ea396028d3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":316}],"sectionNumber":6728,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259961Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787389Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b4dbbd2836b36992184def5b7ccfadcc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":19}],"sectionNumber":6431,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259965Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e152c0c1379a3c341a401d2cacac2e4e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":369}],"sectionNumber":6781,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259964Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"999ea1dd254de327f6662d5f3ac60b93","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":51}],"sectionNumber":6463,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259969Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78739Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2038d992ce8cee5d05b40cdd1a1344ab","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":555}],"sectionNumber":6967,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259971Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787391Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"12b531e271dc2e812af8777ef1d6a46a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":535}],"sectionNumber":6947,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259972Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787391Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"084b1f24dc6638e74ea0cdc141c3be7c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":145}],"sectionNumber":6557,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259975Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787391Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"62c8351aced98b3cd294c1bb46466d0c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":231}],"sectionNumber":6643,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259973Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787391Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"79085c26cbe50637f93e6722feb9243e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":220}],"sectionNumber":6632,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259982Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787392Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ec2da3337a821838f708f63ee36ce7d2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":453}],"sectionNumber":6865,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259993Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787393Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8835173b08a57cec815f7db6ec954e43","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.46,"y":548.2},"width":34.19667,"height":10.44714,"page":205}],"sectionNumber":6617,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259997Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787393Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ab75a1e85fee0f0a6df8fa6979f26433","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":236}],"sectionNumber":6648,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.259999Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787394Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7eb2c63bd479693aada6610daae82414","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":304}],"sectionNumber":6716,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260003Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787394Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5cdc9bc6f0feb270aca309ed5d7bfb96","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":233}],"sectionNumber":6645,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260006Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787395Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"999570f79bec28725502fcd4fd31a772","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":415}],"sectionNumber":6827,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260005Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787394Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5cdefcf1626e69c5a978eef726785385","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":513}],"sectionNumber":6925,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260008Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787395Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4b528fde90d2b5573b3db42803f15563","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":558}],"sectionNumber":6970,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260011Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787395Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"119d5e12f234a5b5babdc8c418bc5b35","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":451}],"sectionNumber":6863,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260014Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787396Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b3c5b4e40b2ccce8fc6a23abf694bb71","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":575}],"sectionNumber":6987,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260022Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787397Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2b2ac974625d7bf6fdd0efde64d2ffdd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":255}],"sectionNumber":6667,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260028Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787398Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"775ee3fd0f6a620f7c3bb3a7052d3f89","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":36}],"sectionNumber":6448,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260026Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787398Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78e80cc9285b10ab73569e2b37fc213c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.46,"y":548.92},"width":34.19667,"height":10.44714,"page":368}],"sectionNumber":6780,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260034Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787399Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"04af9f5e576aa48b4c96a0b2b2390f98","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":429}],"sectionNumber":6841,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260036Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787399Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"73ea7c7d78272536e65e22fc26d1e3f6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":265}],"sectionNumber":6677,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260037Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787399Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c6dc57bc64c82a16d85c65d7ae4c0159","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":401}],"sectionNumber":6813,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26004Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7874Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee77ea0b9543d026133af147c0f25224","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":635}],"sectionNumber":7047,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260048Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787401Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9bf4795fef501ae057f421296b549d19","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":97}],"sectionNumber":6509,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260047Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787401Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10afad9ba35ae01c7c8866573c75a44a","type":"PII","value":"Louis","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":401.50003,"y":506.87},"width":21.510986,"height":10.0905,"page":504}],"sectionNumber":5220,"textBefore":"(Ralston-Purina Co., St. ","textAfter":", MO) ad","comments":null,"startOffset":245,"endOffset":250,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618713Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787212Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a118522b92e4d61f30b54b07fc2506d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":166}],"sectionNumber":6578,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26005Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787401Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a315afc483159ab3d48853d533c7247f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":625}],"sectionNumber":7037,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260051Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787402Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5f5c7ce0d9eff39927531afa8c54edbc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":514}],"sectionNumber":6926,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260053Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787402Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"386f9a0bfeaf93fff2f39318607f24bb","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Gross and histopathology","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.25064,"y":321.21002},"width":25.352264,"height":10.526819,"page":434}],"sectionNumber":4651,"textBefore":"in New Zealand ","textAfter":" Rabbits –","comments":null,"startOffset":164,"endOffset":169,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61864Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787149Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"069e85850b99fd2aeeee572a5c18c78b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":378}],"sectionNumber":6790,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260054Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787402Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d10d10905808a44e3b6fd2e7715c4aed","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":515}],"sectionNumber":6927,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260056Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787402Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d1e2d6a22c1717c00333ce52e212f8ee","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":639}],"sectionNumber":7051,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26006Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6900ff1df2bdcfe80e442bf1fbb321a2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":383}],"sectionNumber":6795,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260063Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70cbd980b9961e6d39250a28927bff62","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":527}],"sectionNumber":6939,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260062Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787403Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65fe04ee34220177682e742149d350c5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":399}],"sectionNumber":6811,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260066Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d47193ede714f486d8b4e34a3b761668","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.81204,"y":501.83},"width":30.772034,"height":10.018499,"page":565}],"sectionNumber":5784,"textBefore":"Final ","textAfter":": N/A","comments":null,"startOffset":46,"endOffset":52,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260068Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5db1b8b1613fc05373c135aff2657fc1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":143}],"sectionNumber":6555,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260071Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ae7bef257051b3a7e5870bd2ad6254a7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":155}],"sectionNumber":6567,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260072Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"95f84820a81d46020f1fcbd35b9ecec3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":241}],"sectionNumber":6653,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260075Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7fd75240fa13dfe9db54e576cb402b81","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":539}],"sectionNumber":6951,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260073Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787404Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c442fa3f648785b9de2f70c4612eae53","type":"CBI_address","value":"Box 705, Witham, Essex, England","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":513.2673,"y":249.65997},"width":19.359558,"height":11.017679,"page":306},{"topLeft":{"x":64.104,"y":237.06},"width":131.77985,"height":11.017679,"page":306}],"sectionNumber":3332,"textBefore":null,"textAfter":null,"comments":null,"startOffset":129,"endOffset":160,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860707Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e985494cba6e875f92e4ac2efac6a215","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":433}],"sectionNumber":6845,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260078Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787405Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"44610c7bb6963d6f24d0b6c2af59c8ca","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.34,"y":548.2},"width":34.196686,"height":10.44714,"page":73}],"sectionNumber":6485,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260079Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787405Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"38543a088a760bf77160445892ab0f33","type":"PII","value":"(10","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Immunological assay:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":118.28833,"y":563.75},"width":15.628006,"height":11.017679,"page":599}],"sectionNumber":6026,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1343,"endOffset":1346,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860707Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b73b0f440c3b0f20f95c2dd87f40a96b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":193}],"sectionNumber":6605,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260083Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787405Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eabe5fd005d5882287f3a299f19e9212","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":490.43},"width":12.039993,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1194,"endOffset":1196,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860708Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"9133bb245301fa14bdb787393b8e961e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":365}],"sectionNumber":6777,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260091Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787407Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"90759a87c0e65f302ef3983df85ce547","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":161.36786,"y":435.95},"width":27.860321,"height":11.017679,"page":376}],"sectionNumber":4123,"textBefore":"female New Zealand ","textAfter":" rabbits were","comments":null,"startOffset":139,"endOffset":144,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618606Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787112Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a0abff5ebab1f2b97ee318ff2e03dba9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":362}],"sectionNumber":6774,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260093Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787407Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"68c74aaf2d2ab1995db713a5baa95162","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":449}],"sectionNumber":6861,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260096Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787407Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"52fb474cfe01544016c59c88b8f9e2d6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":605}],"sectionNumber":7017,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260108Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787409Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"84b8f4aacd3ed48e91a774767feca64f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.61502,"y":542.87},"width":29.935028,"height":10.0905,"page":262}],"sectionNumber":3035,"textBefore":"Final ","textAfter":null,"comments":null,"startOffset":18,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260113Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78741Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"658b3f8b03d2f6788a5afd92de623894","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":291}],"sectionNumber":6703,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260109Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787409Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df6744a58fb54324c3cea915f7011f38","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Group identification and animal numbers","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":91.937996,"y":227.22003},"width":30.898003,"height":10.018499,"page":396}],"sectionNumber":4317,"textBefore":"Dose ","textAfter":" (mL/kg bw)","comments":null,"startOffset":5,"endOffset":11,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260116Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78741Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c3b43fbe68eeed20104e9ea716bf2fd9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":147}],"sectionNumber":6559,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260114Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78741Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8dbff27e76103f830e60130278bab27d","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-44: Evaluation of mouse spot test results","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":284.93,"y":456.35},"width":24.41803,"height":10.018499,"page":531}],"sectionNumber":5469,"textBefore":null,"textAfter":null,"comments":null,"startOffset":0,"endOffset":5,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618748Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787238Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"55dda83b202c4446d96023d0cf32f19b","type":"PII","value":", In den Leppsteinswiesen 19, 64380 Rossdorf, Germany","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":157.08658,"y":592.1},"width":252.75912,"height":10.526819,"page":404}],"sectionNumber":4380,"textBefore":"Research GmbH (RCCCCR)","textAfter":". Laboratory Report","comments":null,"startOffset":184,"endOffset":237,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618625Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787131Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c73fbe2c244867b5a0afa1eb9ecb0e8b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":106}],"sectionNumber":6518,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260117Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787411Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1d1a48202c5b9444f55699ad6f227a02","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Investigations post mortem:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":333.23715,"y":626.42},"width":11.918549,"height":11.017679,"page":180}],"sectionNumber":2372,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1169,"endOffset":1171,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.86071Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b6cb9be35c200c95b46c9b43504529d6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":454}],"sectionNumber":6866,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26012Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787411Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7e8024d00e6f2909c23abbe21a11873b","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":127.66128,"y":121.5},"width":27.970726,"height":11.017679,"page":434}],"sectionNumber":4654,"textBefore":"(NZW) New Zealand ","textAfter":" rabbits by","comments":null,"startOffset":217,"endOffset":222,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618638Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787148Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"46ff69525f6ea0651a76d1864bd2c782","type":"PII","value":"Schulze","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":553.67},"width":35.897438,"height":11.017679,"page":597}],"sectionNumber":6019,"textBefore":"rat. Experientia 25:1250 ","textAfter":" P, Czok","comments":null,"startOffset":3758,"endOffset":3765,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618837Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7873Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ad8dc6efb3dc5da91bd973394def4870","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":546}],"sectionNumber":6958,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260125Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787412Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6003dd714f7decab0c273872741d2e40","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":120}],"sectionNumber":6532,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260128Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787413Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf1d38f5079adcd2266b40d163bfbe3d","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nTest performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":135.79774,"y":488.99},"width":11.918564,"height":11.017679,"page":541}],"sectionNumber":5571,"textBefore":null,"textAfter":null,"comments":null,"startOffset":284,"endOffset":286,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860711Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"00481b0e46c1beb78825eca1366adea0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":603}],"sectionNumber":7015,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260132Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787413Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf705c8cc86fd6ebdae0aed3d1a1c5c1","type":"CBI_author","value":"Hutton E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":309.56348,"y":539.99},"width":46.363373,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"distribution study (","textAfter":", 2015b) there","comments":null,"startOffset":3440,"endOffset":3449,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618209Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257829Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787413Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6c2b4824d012d09b8d57f484d92f4007","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":208.25,"y":687.02},"width":22.996002,"height":10.0905,"page":166}],"sectionNumber":2171,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618405Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786955Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9a5a77a12ad641771cebaa01451e6d2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":311}],"sectionNumber":6723,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260133Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787414Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a18d6b19c56cc1aed78379b67d3f9c0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":137}],"sectionNumber":6549,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260135Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787414Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"86b5816a57814788cc9e59e9ffc969ad","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":3}],"sectionNumber":6415,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260136Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787414Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d5f19d3675568b88ac302b5ea84bf9b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":335}],"sectionNumber":6747,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260139Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40515c5dd309499908f2a041a303c631","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":337}],"sectionNumber":6749,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26014Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787415Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2a7e1e67e3571d3cbba0b193e1cb8503","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-1: Summary of Toxicity Studies with CSAA798670","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":428.71,"y":595.46},"width":25.435028,"height":10.0905,"page":402}],"sectionNumber":4365,"textBefore":"(2009). Report No. ","textAfter":" 1266901. Syngenta","comments":null,"startOffset":140,"endOffset":146,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618623Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787129Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"efd0a64d46d0a3ae2c9e1106fffda61e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":151}],"sectionNumber":6563,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260149Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787417Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c50adb38abe633132e07713b28952590","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":313}],"sectionNumber":6725,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260151Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787417Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0a7a53289308307978e11a005fe1d028","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":586}],"sectionNumber":6998,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260153Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787417Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"12edd9af25a96c23efe225432523207c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":331}],"sectionNumber":6743,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260154Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787417Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d183055983a1ca3dc17c11488069ed1e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":141}],"sectionNumber":6553,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260156Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787418Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7b3acae500437ae1a460f36b971c582e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":371}],"sectionNumber":6783,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260159Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787418Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"955bce36a015d0db8c1169d77ce7432c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":590}],"sectionNumber":7002,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260164Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787419Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c509d3856e579ee5d1ad5c155911d7dc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":177}],"sectionNumber":6589,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260165Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787419Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c420b4cdd64b711bd7a399b7f77503d4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":79}],"sectionNumber":6491,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260169Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787419Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"418a6263bf4c0da8ffa9b6a031c0a2c8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":222}],"sectionNumber":6634,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260172Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aabe68779d9ff3a263674afa9761c7c7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":96}],"sectionNumber":6508,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260171Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3b9be8819774b244730de1fd3be6339b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":238}],"sectionNumber":6650,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260174Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c7874c4dde234711f92890188360238","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":44}],"sectionNumber":6456,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260176Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78742Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5c2262ed24782e84aa327a2866a98fd7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":13}],"sectionNumber":6425,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260181Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787421Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5b90edbe08b800d4f1eac7863b5be8a4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":479}],"sectionNumber":6891,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260182Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787421Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"357bdacf294170b66bfab1e05bb6d5e8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":483}],"sectionNumber":6895,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260184Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787421Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"88fea6130c6d02d5a6a01772c2d48076","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":356}],"sectionNumber":6768,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260185Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787421Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0264081aef1cb6ccddd4bd7b3406a231","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":641}],"sectionNumber":7053,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26019Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787422Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9b7af3ac4b99c9e6ee8d064a3e959dbf","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Investigations post mortem:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":373.88647,"y":75.03998},"width":12.039978,"height":11.017679,"page":179}],"sectionNumber":2372,"textBefore":null,"textAfter":null,"comments":null,"startOffset":298,"endOffset":300,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860715Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"408b8299ec5168b8d9f4a3731b28407c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":278}],"sectionNumber":6690,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260195Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787423Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"481d32fc99348ecd1e46c9bccdd54da3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":165}],"sectionNumber":6577,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260196Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787423Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"316d5d91b6738bf59fbd7f647fd45151","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":583}],"sectionNumber":6995,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260193Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787423Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"67ccb4349e0dac17dc25ca4c64e1316a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":643}],"sectionNumber":7055,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260198Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787423Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d9b3c0a9ced787987560ba3db6773bd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":297}],"sectionNumber":6709,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.2602Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787424Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d863f0d88e32813675458943b3bde43","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":361}],"sectionNumber":6773,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260202Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787424Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5aa803dbd822d5868c4698206340ca00","type":"PII","value":"Assessment Report","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Draft Assessment Report prepared according to the Commission\nRegulation (EU) N° 1107/2009","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":140.91129,"y":436.43},"width":114.92056,"height":12.26886,"page":1}],"sectionNumber":4,"textBefore":"Draft ","textAfter":" prepared according","comments":null,"startOffset":6,"endOffset":23,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":2,"type":"ADDED","dateTime":"2022-05-11T13:59:09.987672Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787355Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8a1f0ac64c3ffd3015f37b5bf2278146","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"REVIEW OF SCIENTIFIC OPEN LITERATURE ....................................................................................................... 626","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":63.984,"y":449.27},"width":36.372154,"height":11.017679,"page":4}],"sectionNumber":15,"textBefore":"details refer to ","textAfter":" 3CA B-3","comments":null,"startOffset":1675,"endOffset":1681,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26022Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787426Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8dd9c22a77ac19357063d577c329bc9a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":18}],"sectionNumber":6430,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260222Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787427Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"072bd80afbff98e1dccf13decfdfca96","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":118}],"sectionNumber":6530,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260229Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787428Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53ba3a46af735f1726221f0797bced6c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":411}],"sectionNumber":6823,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260226Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787428Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"24b45a92bc5303cf87137025ca511306","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":71}],"sectionNumber":6483,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26023Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787428Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b03486498655c324ef216ca59ff76219","type":"PII","value":"Anderson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: REPORTED RESULTS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":329.54398,"y":705.02},"width":39.79428,"height":10.526819,"page":551}],"sectionNumber":5668,"textBefore":"B, Resnick M, ","textAfter":" B, Zeiger","comments":null,"startOffset":392,"endOffset":400,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618776Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787255Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bf0a37dc525457870a3aadac0ff917ec","type":"CBI_author","value":"Lake","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":323.95,"y":219.89996},"width":23.687195,"height":10.929359,"page":622}],"sectionNumber":6235,"textBefore":"described previously (","textAfter":", 1987), employing","comments":null,"startOffset":1496,"endOffset":1500,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618889Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258935Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787428Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"57bd7d9cebe540dca00fe8db5af0cf72","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.1-2: Summary of SYN545974 toxicokinetic profiles and their use to set high dose levels in\ntoxicity studies","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":400.603,"y":578.03},"width":38.007996,"height":10.0905,"page":9}],"sectionNumber":21,"textBefore":"2 Year (","textAfter":", 2015) Multi-generation","comments":null,"startOffset":69,"endOffset":78,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618201Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786776Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"326966ffe90d87fda7b060e582c1e7af","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":49}],"sectionNumber":6461,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260234Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787429Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"289b58a1e7a35e3d2dfb2019b921e568","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":200}],"sectionNumber":6612,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260237Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787429Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a9cba31ffa9e78e0c3b761e27aaa37f1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":230}],"sectionNumber":6642,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260238Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787429Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a53d96b2200724062b947c236b0886b2","type":"CBI_address","value":"Rockville, MD, USA","reason":null,"matchedRule":0,"rectangle":false,"legalBasis":null,"imported":false,"redacted":true,"section":"Under the conditions of the test described, 2,4,6-TCP did not cause a greater than 50% inhibition of\nDNA synthesis over the concentration range tested.","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":145.04927,"y":409.53},"width":94.98352,"height":11.017679,"page":598}],"sectionNumber":6023,"textBefore":null,"textAfter":null,"comments":null,"startOffset":343,"endOffset":361,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860719Z"}],"manualChanges":[],"engines":["NER"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"3daa5c931a8b5a2d1df0d747043d074f","type":"CBI_author","value":"Williams","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":260.5491,"y":506.99},"width":30.289642,"height":9.65418,"page":13}],"sectionNumber":50,"textBefore":"from Webbley and ","textAfter":" (2015) study","comments":null,"startOffset":12290,"endOffset":12298,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618213Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257844Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787431Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6bc65382b4e6b71de31505c3e1a79cf3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":340}],"sectionNumber":6752,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260247Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787431Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0c5fbbdf42d9a109ac1c6d1f0850e8d4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Preparation of representative sample pools for metabolite profiling","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":447.4143,"y":740.18},"width":36.37213,"height":11.017679,"page":19}],"sectionNumber":103,"textBefore":"to the equation, ","textAfter":" pooled =","comments":null,"startOffset":547,"endOffset":553,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260251Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787431Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c1dc89bcf116a26171f3315eede63414","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":189}],"sectionNumber":6601,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260254Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"dae0f22eafb194df7be5be309453d6cc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":206}],"sectionNumber":6618,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260257Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787432Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6d9f52be5702e0f0e2b39d0309ecd0b1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":182}],"sectionNumber":6594,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26026Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787433Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6248acf3f45f4b8657e254a16908d17a","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Vehicle and/or positive control: None","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":289.03107,"y":288.57},"width":22.978027,"height":10.0905,"page":148}],"sectionNumber":2032,"textBefore":"Adult New Zealand ","textAfter":" Rabbit","comments":null,"startOffset":60,"endOffset":65,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618383Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786936Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"18cfcaa39b3b7681fe040c2e98b2437f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":292}],"sectionNumber":6704,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260268Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787435Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c8d22aeaaa48f4f41c925e252c7c991","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":319.68097,"y":330.21},"width":34.206696,"height":10.44714,"page":466}],"sectionNumber":5014,"textBefore":"Final ","textAfter":null,"comments":null,"startOffset":18,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26027Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787435Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a49974c6ac27faa8f6f6ff806103bfee","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.46,"y":548.92},"width":34.19667,"height":10.44714,"page":366}],"sectionNumber":6778,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260276Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787436Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4c631c2d64ab516b5732161c6f20d89d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":574}],"sectionNumber":6986,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260282Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787436Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8954624e0a2dbda7fa019e224ecd4201","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":198}],"sectionNumber":6610,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260284Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787437Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"86bd7de7a1a8a33993136768bca9c42b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":300}],"sectionNumber":6712,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260286Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787437Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ea6a55d8b1993a052c549c73a7b58449","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":4}],"sectionNumber":6416,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260288Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787437Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0f411e42f5b21410a6b008d545727458","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":11}],"sectionNumber":6423,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26029Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787437Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bab31b5dbb2b514df7474cce3924b3d0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":174}],"sectionNumber":6586,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260293Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787438Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4f038a8315d26223e0da7b02547abf9e","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not indicated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":449.84576,"y":74.67999},"width":12.039978,"height":11.017679,"page":538}],"sectionNumber":5549,"textBefore":null,"textAfter":null,"comments":null,"startOffset":683,"endOffset":685,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860721Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"d61d029c2f5d66d653fbe63f2f979d42","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":246}],"sectionNumber":6658,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260295Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787438Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b064a4eb41fbdf4046c980a56c6febd1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":5}],"sectionNumber":6417,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260297Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"87d31c42a506d99b8c4a10177458f446","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":32}],"sectionNumber":6444,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260303Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b89670acd6f3b7e0b5cc4cf2c8e48d77","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":621}],"sectionNumber":7033,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260304Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787439Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4268da04893bed6d9565254b28fe4ab0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":251}],"sectionNumber":6663,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260307Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7c1169f2c5c252ed0c500d2f7b60d988","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":160}],"sectionNumber":6572,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260309Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78744Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ff22470ffbcef862eb5ec32c8795efd7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":234}],"sectionNumber":6646,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260313Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787441Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"81265c40a4a7cb7fdfbba645e7eeee79","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":223.25,"y":565.91},"width":22.977997,"height":10.0905,"page":101}],"sectionNumber":1414,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":68,"endOffset":73,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618305Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786876Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8ed41bcde49b08be4640e77761ae4225","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: Ophthalmoscopy:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.25,"y":719.3},"width":22.978027,"height":10.0905,"page":429}],"sectionNumber":4532,"textBefore":null,"textAfter":" blood cells","comments":null,"startOffset":16,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618634Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787141Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9341e1e8ff15ea140b1cb79afce9412c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":637}],"sectionNumber":7049,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260321Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787442Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"32809f0aca3255f6f9574f27110dc7b4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":210}],"sectionNumber":6622,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260322Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787443Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"90c110c0d05d4a6be6269e0052bd8877","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":315}],"sectionNumber":6727,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260326Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787443Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"776d1692ec9b2d8362f3caaf213357ff","type":"CBI_author","value":"Robertson B.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":248.19221,"y":469.91},"width":59.42366,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"toxicity studies (","textAfter":", 2015a, b);","comments":null,"startOffset":3887,"endOffset":3899,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61821Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257833Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787444Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4146fdc4b4e821e01c9fe357850149f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":169}],"sectionNumber":6581,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260334Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787445Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"40cbc6ec2eb8d78471c6cf1e8104eb03","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":196}],"sectionNumber":6608,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260335Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787445Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb86f24d3fdcb79badea1cda4125a1f7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":94}],"sectionNumber":6506,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260337Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787445Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0485ed48c6f3912f6a0db099cc0306ea","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":572}],"sectionNumber":6984,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260341Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787446Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5718a99124bd02c37256962620a0fd49","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":215}],"sectionNumber":6627,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26034Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787446Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"379908b7aefcfd00402b9e35c662c63e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":133}],"sectionNumber":6545,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260338Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787445Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d75ed47e0267211523222e953492a915","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":308}],"sectionNumber":6720,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260343Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787446Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7921934c1398e3391ba0130dbad0b502","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":227}],"sectionNumber":6639,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260348Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787447Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"96b46a4f4ac7e51c91c5563e9a626e2a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":212}],"sectionNumber":6624,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260349Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787447Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"356648a95fbd09ec287abadef2174f4a","type":"CBI_author","value":"Harris","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":265.85034,"y":497.87},"width":20.906982,"height":9.65418,"page":13}],"sectionNumber":50,"textBefore":null,"textAfter":null,"comments":null,"startOffset":12376,"endOffset":12382,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618214Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257847Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787447Z"}],"manualChanges":[],"engines":["NER","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":true,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"85be48b65f005b96e91ae1e44391222c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":563}],"sectionNumber":6975,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260351Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787447Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"92d3cd01b09d1779a17d14bf988ae6da","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":52}],"sectionNumber":6464,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260352Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787448Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d98eaec6b8c401b94ae92e0353a553d1","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":390.54642,"y":504.35},"width":27.86029,"height":11.017679,"page":131}],"sectionNumber":1865,"textBefore":"female New Zealand ","textAfter":" rabbits were","comments":null,"startOffset":278,"endOffset":283,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618359Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786919Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a06fb4375ebadca248e4789525cc97fb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":417}],"sectionNumber":6829,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260355Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787448Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"904b17c6b04db3c77e108024cf537868","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":104}],"sectionNumber":6516,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260353Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787448Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bc949681c472b2f3d935ebe7c9009ba0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":422}],"sectionNumber":6834,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260356Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787448Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"706ab7d9a143e7667b1cb1cde45b68d3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":280}],"sectionNumber":6692,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260361Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787449Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"29650d2edf11a2075df9a1b24a2adf01","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":550}],"sectionNumber":6962,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260363Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787449Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7231739dff9475893f58ef317b7c5a6c","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":411.95416,"y":302.01},"width":12.039978,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":2436,"endOffset":2438,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860726Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"52540d74560ecefe70f805bcff8874c8","type":"PII","value":"(90","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":402.75684,"y":73.84003},"width":15.74942,"height":11.017679,"page":598}],"sectionNumber":6025,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1174,"endOffset":1177,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860726Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ede824c25c9fd5cfd7f96f7f4be42b22","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":506}],"sectionNumber":6918,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260374Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787451Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6105496cc258458eca2560127c294329","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":319}],"sectionNumber":6731,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260377Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787451Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c91ef8d61f009ae7a20454c8905bb4a5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":235}],"sectionNumber":6647,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260383Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787451Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"63e2c24083954be35f2e7c802ec6ed13","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":325}],"sectionNumber":6737,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260385Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787451Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d0294f3f2bbdfab380b50ac4b2ce9485","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":263}],"sectionNumber":6675,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260387Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787452Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"221c2566c6515b5e4d76e77e20fdc1f2","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"RESULTS AND DISCUSSION","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":78.744,"y":752.42},"width":20.62564,"height":9.65418,"page":194}],"sectionNumber":2503,"textBefore":"22.6 23.5 22.9 ","textAfter":" blood cell","comments":null,"startOffset":4044,"endOffset":4049,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618425Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786976Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"07b67456f63bdfc44d88831fd552b6e0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":248}],"sectionNumber":6660,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260395Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787453Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c2c90ae819afddbff0d30c120d899176","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":60}],"sectionNumber":6472,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260396Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787453Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"df04339434e68c942ad4967332f2594c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":108}],"sectionNumber":6520,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260402Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787454Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9909852e59ee7a5992c2ac1142132931","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":314}],"sectionNumber":6726,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260403Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787454Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"435eae989475bc76fdce4a311b5b1145","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in:  2,4,6-Trichlorophenol (2,4,6-TCP)","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":297.035,"y":230.10004},"width":10.062988,"height":10.0905,"page":490}],"sectionNumber":5135,"textBefore":null,"textAfter":null,"comments":null,"startOffset":228,"endOffset":230,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860728Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"b8743bccad981a71d37e0778a0a2ab9a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":390}],"sectionNumber":6802,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260408Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787455Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4540466e427afe74ae328d7778dc7d37","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":226.46,"y":548.92},"width":34.19667,"height":10.44714,"page":367}],"sectionNumber":6779,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260412Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787455Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7ed95943f24476f832a82d26ab555a07","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":317}],"sectionNumber":6729,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260414Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787456Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"06957e4aea731bcd47bab6bd22803e5f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":129}],"sectionNumber":6541,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260415Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787456Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0bca4deb1660361039cdbe14a3970770","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":135}],"sectionNumber":6547,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260421Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787456Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a8218939d99d572a88b5f57e6d96337","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":336}],"sectionNumber":6748,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260423Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787457Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4d509752c0532c318f904e5b4f09da95","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":358}],"sectionNumber":6770,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260432Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787458Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"87102f5c9d277f7351d881235813c528","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":598}],"sectionNumber":7010,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260438Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787458Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"10e18e4e38eb96e48d30fd33cc210f55","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":185}],"sectionNumber":6597,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260445Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787459Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee898033809883b4b5027c670a261a28","type":"PII","value":"Robertson","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Reproducibility and Consistency","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":173.36687,"y":97.14398},"width":46.208817,"height":11.017679,"page":300}],"sectionNumber":3307,"textBefore":"been demonstrated (","textAfter":" 2015 and","comments":null,"startOffset":1238,"endOffset":1247,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618518Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787045Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8740ae1b2f9b1bed37c50ca2377c6828","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":564}],"sectionNumber":6976,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260447Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"69a273aa2952fb7838496fdfb9298f80","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":318}],"sectionNumber":6730,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260448Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4ea30f8b71290a2a62968a0ec2a9371d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":628}],"sectionNumber":7040,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260452Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4e6918c86034b6547ddf13e5b1f5bd2a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":494}],"sectionNumber":6906,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26045Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"425d91b77c1b1072c9b22471d30f255a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":59}],"sectionNumber":6471,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260453Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78746Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d48b3ae5f76317af903b393b64ad77d0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":520}],"sectionNumber":6932,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260457Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787461Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f0825f4c354e85b7887561a2d6f62a15","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":447}],"sectionNumber":6859,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260459Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787461Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8b41f17f3373bd8b22c17a5b504c4d7d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":110}],"sectionNumber":6522,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26046Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787461Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"78058c4f3d4bf909398017fb6e4b3f6f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":495}],"sectionNumber":6907,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260466Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787462Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"907ee82fc600426ef6472a5844828fac","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":622}],"sectionNumber":7034,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260465Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787462Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9a2e5ff35fd00a62a54b2cc3c0902b7","type":"CBI_author","value":"Punler M.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":103.69344,"y":412.53},"width":47.997276,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"AUC ratios (","textAfter":", Harris J.,","comments":null,"startOffset":4198,"endOffset":4207,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61821Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257836Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787463Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"08ff3f1d1f67b1ac957e6fd761e4a00c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":100}],"sectionNumber":6512,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26047Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787463Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e4519a3421bdb2ed78aba84c390d2878","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":26}],"sectionNumber":6438,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260472Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787463Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0eced339b5f72f2cabccb9bb596cd7d8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":88}],"sectionNumber":6500,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260474Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787464Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"61cbb093a0fda66566398bdb36ff9160","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":330}],"sectionNumber":6742,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260475Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787464Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1b59edb4b4e0358ef57c0231f72b313b","type":"PII","value":"24","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:\nIn-life dates: Not stated","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":134.14641,"y":715.58},"width":12.040009,"height":11.017679,"page":545}],"sectionNumber":5616,"textBefore":null,"textAfter":null,"comments":null,"startOffset":604,"endOffset":606,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860731Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"5701537a16d0702663690a7d51252b92","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":50}],"sectionNumber":6462,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260477Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787464Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b1fab71844a9a1333d71f1a8c6264a2b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":426}],"sectionNumber":6838,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260478Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787464Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e69665ce3a12a361517c090152838afc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":436}],"sectionNumber":6848,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260486Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787466Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f9ca73a4eb53f2a49dd61f2a9ef27504","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":29}],"sectionNumber":6441,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260485Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787465Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7be4db0ed1f8effe43f6ecc01301491e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":351}],"sectionNumber":6763,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26049Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787466Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"39d6880fbc67355810acf90ba2d414d2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":146}],"sectionNumber":6558,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260488Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787466Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2fc0c9eebb7c3a46346dad62d26700cd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":473}],"sectionNumber":6885,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260491Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787467Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"493d06e51475588038b7220643aa1153","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"TEST PERFORMANCE","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":389.76187,"y":549.11},"width":26.62384,"height":11.017679,"page":522}],"sectionNumber":5403,"textBefore":"by Ames (","textAfter":" et. al,","comments":null,"startOffset":376,"endOffset":380,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618743Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.258671Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787467Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"491012877a1e5ee9a87f615cd1d4e8db","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":78}],"sectionNumber":6490,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260497Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787468Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"93f1d0a957ee792a5989aec7ed1256c5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":543}],"sectionNumber":6955,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.2605Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787468Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c34d4f56af1d1891e0e77c59fda60cd7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":24}],"sectionNumber":6436,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260501Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787469Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf01ebf17bf57bbf9ca21d02e0497ea0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":638}],"sectionNumber":7050,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26051Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78747Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a64736877c0b2be0c9d722915ec7a757","type":"PII","value":"48","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study design","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":385.1013,"y":487.67},"width":11.918549,"height":11.017679,"page":291}],"sectionNumber":3217,"textBefore":null,"textAfter":null,"comments":null,"startOffset":5818,"endOffset":5820,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860733Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"cb293970ca0cba0788a4712d579e0309","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":343}],"sectionNumber":6755,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260518Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787471Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1fb024058b3b6142280a3f0985c998fc","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":488}],"sectionNumber":6900,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260521Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787472Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"da4af2c0217865503a221dd1c56ef9d9","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":486}],"sectionNumber":6898,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260524Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787472Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3cfa9f3772b4906687e34f7b57b33610","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":501}],"sectionNumber":6913,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260528Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"db4e814e81964a95e99f6449fc3b03e0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.34,"y":548.2},"width":34.196686,"height":10.44714,"page":72}],"sectionNumber":6484,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260533Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787473Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"aad002e94601656a90ad77329db6eca0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":188}],"sectionNumber":6600,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260536Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787474Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b580efd653403401317b2903e6006076","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":349}],"sectionNumber":6761,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260534Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787474Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ca2ce0ac3e065c529516c18f7164e050","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":170}],"sectionNumber":6582,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260537Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787474Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"36823316b3e754b5b716efb9fd113f50","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":218}],"sectionNumber":6630,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26054Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787475Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"65bad13ae23e85995fe9a85977486215","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":460}],"sectionNumber":6872,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260542Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787475Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7e2b2c126a621a1fa9fcba9073a7600","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":40}],"sectionNumber":6452,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260546Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787476Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bc54450be5063a6b1595c0528a33f374","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":295}],"sectionNumber":6707,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260551Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3c8db84e02c35066ef37c445145e80f8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":216}],"sectionNumber":6628,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260549Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787476Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f0322dd39f41d6f3629c1a476a526d34","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":602}],"sectionNumber":7014,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260552Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"f96dcce5a50c8bf432c181d4fb1147d7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":392}],"sectionNumber":6804,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260555Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787477Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"145b66380b5f3493a7b00df9b916e416","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":164}],"sectionNumber":6576,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260561Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787478Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0024d89db8ca1f870a22f464ab906851","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":601}],"sectionNumber":7013,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260562Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787478Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"97a2f253cff922c10222798534865c68","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":353}],"sectionNumber":6765,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260566Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787478Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"539833693efe6577dc780b24a6fbce4f","type":"CBI_address","value":"Greensboro, NC, USA","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"Table in: SYN545974 is a direct activator of CAR from mouse, rat and human, and has high efficacy (i.e.\nmaximal fold change compared to model activators) in all three species.","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":331.63403,"y":487.79},"width":82.53992,"height":10.0905,"page":319}],"sectionNumber":3398,"textBefore":"Protection, LLC (","textAfter":")","comments":null,"startOffset":109,"endOffset":128,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618539Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787057Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3a53d125d58acc50d2853638239de618","type":"CBI_author","value":"Ames","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"B.6.4. GENOTOXICITY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":270.99033,"y":643.34},"width":26.513428,"height":11.017679,"page":232}],"sectionNumber":2819,"textBefore":"human lymphocytes). The ","textAfter":" studies were","comments":null,"startOffset":368,"endOffset":372,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61845Z"},{"analysisNumber":3,"type":"CHANGED","dateTime":"2022-05-11T14:03:58.164704Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787356Z"}],"manualChanges":[],"engines":["DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"60738641937f9601ba75ecb1e1d365be","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":496}],"sectionNumber":6908,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260577Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78748Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ee1186c59d090a6de71102e3415fca11","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":529}],"sectionNumber":6941,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260578Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78748Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"68b7976868ae987d828e96cbd4f8c80d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":573}],"sectionNumber":6985,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260583Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1a127459489284785711466ed2205b96","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":359}],"sectionNumber":6771,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26058Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78748Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5a11f7548ab4f7b09b27c9882accf5ee","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":276}],"sectionNumber":6688,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260581Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7638c15614d6288d5209b98bd7582a7f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":414}],"sectionNumber":6826,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260584Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"15d04a23ac637afe3616537e80ba41cb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":644}],"sectionNumber":7056,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260585Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c80379c0460eb4069cdb5e0da950c01f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":323}],"sectionNumber":6735,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260587Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"28cd3fc2660bfd48b1418e8d1cc8a800","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":289}],"sectionNumber":6701,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260588Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787481Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9bd5843692046ad5e9f50efe7dadd117","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":222.17,"y":212.70001},"width":22.977997,"height":10.0905,"page":353}],"sectionNumber":3866,"textBefore":null,"textAfter":" powder","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618584Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787091Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5fd1c80bcfbc692c154d7fb45a1acffe","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":560}],"sectionNumber":6972,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26059Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787482Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"82330acdb044386c38b3fd0cf1c8cefb","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":271}],"sectionNumber":6683,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260596Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787483Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"39d80832ffcb461820387ef25e87a05b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":418}],"sectionNumber":6830,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260597Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787483Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b13a7791820ce2905db112aac3392c0c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":80}],"sectionNumber":6492,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.2606Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787483Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"934c0ae30a985eec4569e02ce6ae17a8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":63}],"sectionNumber":6475,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260602Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787483Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d7dbd2926314bed559d17d3234037b19","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":382}],"sectionNumber":6794,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260604Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787484Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"518c63208abe38de000af6351bce26b0","type":"CBI_author","value":"Webbley","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":216.18434,"y":506.99},"width":29.84755,"height":9.65418,"page":13}],"sectionNumber":50,"textBefore":"Data extracted from ","textAfter":" and Williams","comments":null,"startOffset":12278,"endOffset":12285,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618212Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257842Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787484Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fcfdb4e39f637ef50d9374ff3a73b8ff","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":2}],"sectionNumber":6414,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260606Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787484Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2401198473590d1715973303941bfa3f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":262}],"sectionNumber":6674,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260609Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787485Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fd0dfbde075749a466b9edf0452adf85","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":611}],"sectionNumber":7023,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260612Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787485Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c284800104329967fc96228b09844254","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":587}],"sectionNumber":6999,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260617Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787485Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"346ca2a17f691144f664e06b888ba7db","type":"PII","value":"10-15","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":195.76706,"y":184.62},"width":26.682953,"height":11.017679,"page":251}],"sectionNumber":2952,"textBefore":null,"textAfter":null,"comments":null,"startOffset":583,"endOffset":588,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618461Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787009Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"566f25dd1ecc20507310dfb85d97ce47","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":620}],"sectionNumber":7032,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260618Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787486Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"01547fe74c65b03480c01bc43fbc4faf","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":112}],"sectionNumber":6524,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26062Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787486Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"994b01cfc6e9c3ed9b0a6807cb2a1ee1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":476}],"sectionNumber":6888,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260624Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787487Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e8ea8b7206114a1ea3df0d9a0fd68e69","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":69}],"sectionNumber":6481,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260623Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787487Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"70d993bf488275a1c98e2af5c7155a34","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":148}],"sectionNumber":6560,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260627Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787488Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fc4ad2c9b5db3dd9a2efd7badf6bf033","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":423.67,"y":668.9},"width":25.435028,"height":10.0905,"page":448}],"sectionNumber":4879,"textBefore":"(2014a). Report No. ","textAfter":" 1555901. Syngenta","comments":null,"startOffset":122,"endOffset":128,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787161Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"c18eeadb677433ce5762971698f434a7","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"EXECUTIVE SUMMARY","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":241.60213,"y":354.21},"width":27.970718,"height":11.017679,"page":369}],"sectionNumber":4067,"textBefore":"female New Zealand ","textAfter":" rabbits were","comments":null,"startOffset":393,"endOffset":398,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618602Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787106Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"25cbda9231c59304a7024efa005cc055","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":544}],"sectionNumber":6956,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260636Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787489Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e7e2d265b031a437c9eb19478810e361","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":604}],"sectionNumber":7016,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260637Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787489Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"648b96b5c519111198c2679a25c70e5a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":172}],"sectionNumber":6584,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260644Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787491Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"b5d9d3817028f707cf07d69f0cbd8a96","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":45}],"sectionNumber":6457,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260649Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787492Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"41bc85c5e894c0251b1d2624ab7a8b92","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":553}],"sectionNumber":6965,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260651Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787492Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"53a7b74019bac5f158d8366ffefbe1d7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":90}],"sectionNumber":6502,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260652Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787492Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3d98ff33edda06348869eef6c7560238","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":87}],"sectionNumber":6499,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260658Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787493Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4faed4467a7336eccdb8baf496ca438f","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":116.82001},"width":29.781288,"height":10.929359,"page":562}],"sectionNumber":5772,"textBefore":"for alkaline elution. ","textAfter":" cell preparation","comments":null,"startOffset":1017,"endOffset":1022,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.61879Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787263Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ac1bc0a04fd0f31299b3729d8cb49538","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":14}],"sectionNumber":6426,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260664Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787494Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3710039fd53c2082033cbb2fe3174e7a","type":"PII","value":"Schulze","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Test performance:\nIsolation and viability of liver cells","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":76.203835,"y":100.02002},"width":35.775993,"height":11.017679,"page":595}],"sectionNumber":6016,"textBefore":"foils according to ","textAfter":" and Czok","comments":null,"startOffset":1753,"endOffset":1760,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618834Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787297Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"740f359ed2371250c5314f4b8ca3003c","type":"CBI_address","value":"Witham, Essex, UK","reason":"Address found for non vertebrate study","matchedRule":3,"rectangle":false,"legalBasis":null,"imported":false,"redacted":false,"section":"MATERIALS AND METHODS","color":[0.76862746,0.59607846,0.98039216],"positions":[{"topLeft":{"x":357.83432,"y":512.15},"width":88.8674,"height":11.017679,"page":177}],"sectionNumber":2337,"textBefore":"Special Diets Services, ","textAfter":".","comments":null,"startOffset":200,"endOffset":217,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618415Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.786965Z"}],"manualChanges":[],"engines":["NER","DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"6dc2ae1cb3864d11ad45ee2167688f52","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":38}],"sectionNumber":6450,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260667Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787495Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fb4b6c23607d333c0e04869141b4b943","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":207}],"sectionNumber":6619,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260668Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787495Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"29b3a82921956fad9c5104a02d4a115b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":404}],"sectionNumber":6816,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260672Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787495Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"787ab6fcc7e095aa10a534c36549e196","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.4-1: Summary of Genotoxicity of SYN545974","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":409.03,"y":587.15},"width":25.435028,"height":10.0905,"page":233}],"sectionNumber":2813,"textBefore":"Bohnenberger S (2013) ","textAfter":" (CCR) Report","comments":null,"startOffset":193,"endOffset":199,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618451Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787003Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7d176dddf167a66fcc49e2b9cd86cd60","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":484}],"sectionNumber":6896,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260675Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787496Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4cf89955cefb66584c1d121ce3620fb8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":467}],"sectionNumber":6879,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260676Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787496Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"0e594f4d6e9108d637cfce29b86efb6c","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":85}],"sectionNumber":6497,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260678Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787496Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"fef9a21da226a6076bdac933131745c4","type":"CBI_author","value":"Harris J.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":159.22462,"y":412.53},"width":41.14142,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"ratios (Punler M., ","textAfter":", 2014a). For","comments":null,"startOffset":4209,"endOffset":4218,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618209Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257832Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787496Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9d17b396f45452862682c3e8cbf52881","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":211.85,"y":577.79},"width":22.977997,"height":10.0905,"page":334}],"sectionNumber":3538,"textBefore":null,"textAfter":" to off-white","comments":null,"startOffset":38,"endOffset":43,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618552Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787066Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"094544440d3375226397e9e5e53c4d33","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Diet preparation and analysis:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":314.47,"y":589.94},"width":25.352264,"height":10.526819,"page":473}],"sectionNumber":5053,"textBefore":"distribution width Platelets ","textAfter":" blood cell","comments":null,"startOffset":3339,"endOffset":3344,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618666Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787171Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a1a26bb700213b69d77e3d722b4ac64e","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":615}],"sectionNumber":7027,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260684Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787497Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a6e2496952e6c8ebb0acaf683582cd82","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":17}],"sectionNumber":6429,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260685Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787497Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d4720ce8d561ee846fc64af9aa38c2f7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":504}],"sectionNumber":6916,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260689Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787498Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"32fda744c564aca6bd218a0600fb8533","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":384}],"sectionNumber":6796,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260697Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787499Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"3aeb6a108246a06dc4dae104dbaa909b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":130}],"sectionNumber":6542,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260698Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787499Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed4dba91e5522b73929f7db7d99c0798","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":520.77423,"y":628.34},"width":11.918579,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":534,"endOffset":536,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860744Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"ee6a27bb3726f495296a83d48cf72c88","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":310}],"sectionNumber":6722,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260699Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"1c026bb35a89007e1225d6025d6b784b","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":517}],"sectionNumber":6929,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260705Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.7875Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"4166ca25c0c33ffbb5f0fd0e777f9bb5","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":567}],"sectionNumber":6979,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260708Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787501Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d61730c4a41d223343031097eada0096","type":"PII","value":"10-13","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Study Design and Methods:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":119.71248,"y":740.9},"width":26.627533,"height":11.017679,"page":463}],"sectionNumber":4999,"textBefore":null,"textAfter":null,"comments":null,"startOffset":451,"endOffset":456,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618659Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787166Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"e9f987b158fcc4c7069fd4191ed549d0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":156}],"sectionNumber":6568,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260709Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787501Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"44e961f5a31fd2d678101f004366d897","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":348}],"sectionNumber":6760,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26071Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787501Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"7a853d931981598abdcee887a65cdd72","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":168}],"sectionNumber":6580,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260714Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787501Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"9ea16c060206085b32ba93188ae212e6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":443}],"sectionNumber":6855,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260715Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787502Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"51cfc3e97ee3a5edd2d8d2b82dd85375","type":"PII","value":"Harlan","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table 6.8.1-16: Summary of Toxicity Studies with SYN508272","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":431.44,"y":627.02},"width":25.435028,"height":10.0905,"page":448}],"sectionNumber":4880,"textBefore":"(2013a). Report No. ","textAfter":" 1555902. Syngenta","comments":null,"startOffset":114,"endOffset":120,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618653Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.78716Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"85cfe7f16d9b963b80211a14bd2ae461","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":406}],"sectionNumber":6818,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260717Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787502Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb3fff2bdc53319f8040f9e1b443c911","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":48}],"sectionNumber":6460,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260728Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787503Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"8e0be773ee508558a0d4c96fe27ac987","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":533}],"sectionNumber":6945,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260731Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787503Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e9585386027334bc836cef843aa1d888","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":277}],"sectionNumber":6689,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260734Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787504Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e34fbba607973d01fd868d8a55b409a8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":339}],"sectionNumber":6751,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260736Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787504Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a4c26f7f88d7f0b2b7ea3a4b32a9daa0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":352.37503,"y":303.57},"width":29.935028,"height":10.0905,"page":257}],"sectionNumber":2984,"textBefore":"Final ","textAfter":null,"comments":null,"startOffset":18,"endOffset":24,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260737Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787504Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"2c9b76a6a9c9c198544f890408e72836","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":584}],"sectionNumber":6996,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26074Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787505Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"698c53c2f184a7b05edc1a9561efcff7","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Table in: MATERIALS AND METHODS","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":344.81204,"y":477.71},"width":30.772034,"height":10.018499,"page":565}],"sectionNumber":5785,"textBefore":"Final ","textAfter":": Not indicated","comments":null,"startOffset":24,"endOffset":30,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260742Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787505Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"01875198531560c8be0142de8b242047","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":491}],"sectionNumber":6903,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260743Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787505Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"bea72de1af340c4ea0e89857dd10559b","type":"PII","value":"White","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Maternal toxicity:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":64.104,"y":499.43},"width":27.970726,"height":11.017679,"page":384}],"sectionNumber":4217,"textBefore":"pregnant New Zealand ","textAfter":" rabbits from","comments":null,"startOffset":3989,"endOffset":3994,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618611Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787118Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cf838ff72f11aaee3c02b78ca95d0a7f","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":243}],"sectionNumber":6655,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260749Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787506Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"214b32a594e4037302151d4046b7fe55","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":341}],"sectionNumber":6753,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260752Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787506Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e84b0e69f7f64095e0879decd6bf78a2","type":"PII","value":"28","reason":"Personal information found","matchedRule":25,"rectangle":false,"legalBasis":"Article 39(e)(2) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Sacrifice and Pathology:","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":208.02992,"y":427.91},"width":11.918564,"height":11.017679,"page":310}],"sectionNumber":3345,"textBefore":null,"textAfter":null,"comments":null,"startOffset":1558,"endOffset":1560,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":14,"type":"ADDED","dateTime":"2022-05-11T15:04:17.860747Z"}],"manualChanges":[],"engines":["RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":false,"dossierDictionaryEntry":false},{"id":"035ff383696b233308ba29fe3a967bf2","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":364}],"sectionNumber":6776,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260753Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787507Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a29ee40c9d23bc944bc915e8a4e7cbcd","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.68},"width":34.196686,"height":10.44714,"page":105}],"sectionNumber":6517,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26076Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787508Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"11b57a103989c78e7e2514691c823987","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":559}],"sectionNumber":6971,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260759Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787507Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ce6dd018fb67dd656bd74be13d6f23b6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":566}],"sectionNumber":6978,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260757Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787507Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"13c8f57e51f355bf599e4450bee48c95","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":327}],"sectionNumber":6739,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260756Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787507Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"abc22ad509d8c64bfb993a257b26d379","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":556}],"sectionNumber":6968,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260762Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787508Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"d1971338d6ad87632d9ef0cba19678f6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":585}],"sectionNumber":6997,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260763Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787508Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"789bb8222ea44f921daf0cca2264bda8","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":31}],"sectionNumber":6443,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260765Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787508Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"a0efacb0a1d9b43b1b7bb69aca985017","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":500}],"sectionNumber":6912,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260771Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787509Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"900576ab3d8aa08f584ed3b48e1d289d","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":33}],"sectionNumber":6445,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.26077Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787509Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5c1fbc21d91c66541a00629eb312fdd6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":439}],"sectionNumber":6851,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260785Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787511Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"daa6e8d290147446fc4cdaa1e197aa8a","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":70}],"sectionNumber":6482,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260782Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787511Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"ed7453e80454e12fa9ae77f501586ff6","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":30}],"sectionNumber":6442,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260786Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787511Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"e6b1348eed1e5069d657071f23840c2f","type":"CBI_author","value":"Hutton E.","reason":"Author found","matchedRule":1,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Biotransformation","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":420.5208,"y":140.70001},"width":44.08914,"height":11.017679,"page":11}],"sectionNumber":50,"textBefore":"Williams D., 2015; ","textAfter":", O’Hagan P.,","comments":null,"startOffset":6050,"endOffset":6059,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":1,"type":"ADDED","dateTime":"2022-05-11T13:55:00.618208Z"},{"analysisNumber":8,"type":"CHANGED","dateTime":"2022-05-11T14:12:32.257824Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787512Z"}],"manualChanges":[],"engines":["NER","DICTIONARY","RULE"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"846cd23f287e6a96c24c5b3650d8c5c4","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":288}],"sectionNumber":6700,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260788Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787511Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"5d7d86af0aba37aa1b2ef51b7d2ee0a1","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":795.4},"width":34.1967,"height":10.44714,"page":381}],"sectionNumber":6793,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260792Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787512Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"cee5c0bac67736191d8c586b3506a8b0","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.37,"y":794.56},"width":34.196686,"height":10.44714,"page":25}],"sectionNumber":6437,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260799Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787513Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false},{"id":"eb946d94884cf632484f0a47c0f1c9e3","type":"PII","value":"Volume","reason":"Personal information found","matchedRule":19,"rectangle":false,"legalBasis":"Article 39(e)(3) of Regulation (EC) No 178/2002","imported":false,"redacted":true,"section":"Header","color":[0.5764706,0.59607846,0.627451],"positions":[{"topLeft":{"x":247.49,"y":794.68},"width":34.1967,"height":10.44714,"page":190}],"sectionNumber":6602,"textBefore":"Pydiflumetofen ","textAfter":" 3 –","comments":null,"startOffset":15,"endOffset":21,"imageHasTransparency":false,"excluded":false,"sourceId":null,"changes":[{"analysisNumber":8,"type":"ADDED","dateTime":"2022-05-11T14:12:32.260795Z"},{"analysisNumber":14,"type":"CHANGED","dateTime":"2022-05-11T15:04:17.787512Z"}],"manualChanges":[],"engines":["DICTIONARY"],"reference":[],"importedRedactionIntersections":[],"hint":false,"recommendation":false,"localManualRedaction":false,"manuallyRemoved":false,"falsePositive":false,"image":false,"dictionaryEntry":true,"dossierDictionaryEntry":false}],"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":36,"dossierDictionaryVersion":1,"rulesVersion":3,"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 Report.xlsx b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/templates/Excel Report.xlsx index b2400ff..98f9e79 100644 Binary files a/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/templates/Excel Report.xlsx and b/redaction-report-service-v1/redaction-report-service-server-v1/src/test/resources/templates/Excel Report.xlsx differ